// Javascript for images on main search list page to click through and return all properties
// This script is for all Resale Properties
function func_submit_get_all_px_properties() {
		 document.getElementById("store_tratyp_image").value = "1";
		 document.frmSearchImage.action = "ipm/properties/search_list.php";
		 document.frmSearchImage.submit();
}

function func_submit_get_all_resale_properties_image() {
                 if (document.getElementById("store_from_flash").value == "") {
                     document.getElementById("store_tratyp_image_resale").value = "1";
                     document.getElementById("store_from_flash").value = "1";
		     document.frmSearchImageResale.action = "ipm/properties/search_list.php";
                 } else {
                     document.frmSearchImageResale.action = "index.php";
                 }
		 document.frmSearchImageResale.submit();
}

function func_submit_get_all_rental_properties_image() {
                 if (document.getElementById("store_from_flash").value == "") {
                     document.getElementById("store_tratyp_image_rental").value = "2";
                     document.getElementById("store_from_flash").value = "1";
		     document.frmSearchImageRental.action = "ipm/properties/search_list.php";
                 } else {
                     document.frmSearchImageRental.action = "index.php";
                 }
		 document.frmSearchImageRental.submit();
}

function func_submit_get_all_px_properties_image() {
                 if (document.getElementById("store_from_flash").value == "") {
                     document.getElementById("store_tratyp_image_px").value = "1";
                     document.getElementById("store_from_flash").value = "1";
		     document.frmSearchImagePX.action = "ipm/properties/search_list.php";
                 } else {
                     document.frmSearchImagePX.action = "index.php";
                 }
		 document.frmSearchImagePX.submit();		 
}

function func_submit_get_all_px_properties_postit() {
		 document.getElementById("store_tratyp_image_postit").value = "1";
		 document.frmSearchImagePostIt.action = "ipm/properties/search_list.php";
		 document.frmSearchImagePostIt.submit();
}

function func_submit_get_all_special_properties_image() {
                 if (document.getElementById("store_from_flash").value == "") {
  		     document.getElementById("store_tratyp_image_special").value = "1";
                     document.getElementById("store_from_flash").value = "1";
		     document.frmSearchImageSpecial.action = "ipm/properties/search_list.php";
                 } else {
                     document.frmSearchImageSpecial.action = "index.php";
                 }
		 document.frmSearchImageSpecial.submit();
}
