function addbasket(arg)
{

var bwin=window.open("basket.asp?id=" + arg  + "","shopMega" ,"fullscreen=no,TITLE=DDD,WIDTH=900,HEIGHT=600,left=0,top=0,scrollbars=yes");
//window.event.srcElement.blur();

//bwin.focus();
}


function showbasket()
   {
   var bwin=window.open("basket.asp","shopMega" ,"fullscreen=no,TITLE=DDD,WIDTH=900,HEIGHT=600,left=0,top=0,scrollbars=yes");
   bwin.focus();
   }


function searchCatalog()
{
var st=document.getElementById("searchText");

if (st.value.length==0) 
	{
	alert("Ââåäèòå óñëîâèå ïîèñêà!");
	st.focus();
	return 0;
	}
var f=document.getElementById("frmSearch");
f.searchValue.value=st.value;
	
f.submit();
return 1;
}


