function PysSearch(Action){
    
    
	var Source = ""; 
	var oBJ ;
	
	
	oBJ = document.forms["Form2"].elements["CD_ITEM"];
	Source +=  (oBJ.selectedIndex < 1)?"":"&Portfoy=" + oBJ.value;
	
	oBJ = document.forms["Form2"].elements["CD_ITEMDETAIL04"];
	Source +=  (oBJ.selectedIndex < 1)?"":"&District=" + oBJ.value;
	
	oBJ = document.forms["Form2"].elements["CD_ITEMGROUP"];
	Source +=  (oBJ.selectedIndex < 1)?"":"&Group=" + oBJ.value;
	
	oBJ = document.forms["Form2"].elements["CD_ITEMDETAIL07"];
	Source +=  (oBJ.selectedIndex < 1)?"":"&Rooms=" + oBJ.value ;
	
	oBJ = document.forms["Form2"].elements["CS_FIELD01MIN"];
	Source +=  (oBJ.value == "")?"":"&MinPrice=" + oBJ.value;
	
	oBJ = document.forms["Form2"].elements["CS_FIELD01MAX"];
	Source +=  (oBJ.value == "")?"":"&MaxPrice=" + oBJ.value;
	
	oBJ = document.forms["Form2"].elements["NO_FIELD02MIN"];
	Source +=  (oBJ.value == "")?"":"&MinArea=" + oBJ.value;
	
	oBJ = document.forms["Form2"].elements["NO_FIELD02MAX"];
	Source +=  (oBJ.value == "")?"":"&MaxArea=" + oBJ.value;
	
	oBJ = document.forms["Form2"].elements["SW_FORSALE"];
    Source += (oBJ.checked == false)?"":"&Sale=1";

	oBJ = document.forms["Form2"].elements["SW_FORRENT"];
    Source += (oBJ.checked == false)?"":"&Rent=1";
	
	location.href ="?Action=ShowPSearch" + Source;
	
	
}
 