
// ---------- script properties ----------


//var results_location = "results.aspx";

// ---------- end of script properties ----------


function search_form(jse_Form) {

	if (jse_Form.d.value.length > 0) {
      var list=document.getElementById("lstSearchOptions");
      if(list.selectedIndex==0) //internal search
        {
         //jse_Form.setAttribute("action", "<%= ResolveClientUrl('~/Default.aspx') %>");
         jse_Form.setAttribute("method", "post");      
		 document.cookie = "d=" + escape(jse_Form.d.value) + ";path=/";
		 window.location =getAppPath("results.aspx");
		}
	  else //google search
	    {
	       jse_Form.setAttribute("action", "http://www.google.com/search");
	       jse_Form.setAttribute("method", "get");;
	       var domainroot="www.gerotools.ro";
	       jse_Form.q.value="site:" + domainroot + " " + jse_Form.d.value;//escape(jse_Form.d.value);
	       document.jse_Form.submit();
	    }
		
	}
}

