



function no_wshop_StartCpyAddr(a)
{
var f = window.document.forms['wshopStart'];
f.addr2.value = a;
}










function oShpSearchGo(a,b)
{
var f = window.document.forms[b];
f.submit();
}








function no_search_Field(a,b)
{
	var f = window.document.forms['no_wshopSearch'];
	var xmlHttp=null;
	
	if ( a == "eOnClick")
	{
	     if ( $("#no_wshop_search_Rslt").length > 0 )
         {
         $("#no_wshop_search_c").fadeIn(500);
         function callback() {
         this; // dom element
         }
         }
	}
	
	
	else if ( a == "eOnBlur" )
	{
	     if ( $("#no_wshop_search_Rslt").length > 0 )
         {
         $("#no_wshop_search_c").fadeOut(500);
         function callback() {
         this; // dom element
         }
         }
	}
	
	
	
	else if ( a == "eOnKeyUp" )
	{
		try
		  {// Firefox, Opera 8.0+, Safari, IE7
		  xmlHttp=new XMLHttpRequest();
		  }
		catch(e)
		  {// Old IE
		  try
		    {
		    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		    }
		  catch(e)
		    {
		    alert ("Your browser does not support XMLHTTP!");
		    return;  
		    }
		  }
		var url="xmlHttp/no.wshop.search.asp?str=" + b
		url=url+"&sid="+Math.random();
		xmlHttp.open("GET",url,false);
		xmlHttp.send(null);
		document.getElementById("no_wshop_search_Rslt").innerHTML = xmlHttp.responseText;
	}



}