//OPEN TOPSERVER.JSP PAGE...
function searchNow(frmName)
				{
					
					var URLname="/userAdmin/advSearch/advSearch_code.jsp?";
					var SERVERname = document.getElementById("viatorServer").value;
					var AUID = document.getElementById("AUID").value;
					var SUBAUID = document.getElementById("SUBAUID").value;
					var TITLEvalue = document.getElementById("Titlevalue").value;
					var BACKGROUNDvalue = document.getElementById("BackGroundvalue").value;
					var FEATUREvalue = document.getElementById("ModuleFeatureTitle").value;
					var TARGETValue = document.getElementById("targetVal").value;
					
					URLname=SERVERname+URLname+"&"+"AUID="+AUID+"&MODBACKGROUND="+BACKGROUNDvalue+"&MODTITLE="+TITLEvalue+"&MODFEATURE="+FEATUREvalue+"&TARGETVAL="+TARGETValue+"&SUBAUID="+SUBAUID;
					if (document.getElementById("showAllContinent") != undefined)
						URLname += "&showAllContinent="+document.getElementById("showAllContinent").value;
					if (document.getElementById("showAllCountry") != undefined)
						URLname += "&showAllCountry="+document.getElementById("showAllCountry").value;
					
				   //frames['Frm_advSearch'].location.href =URLname;
				   if (frmName == undefined)
				   	frames['Frm_advSearch'].location.href =URLname;
				   else
				   	frames[frmName].location.href =URLname;
				   
				        
				}



