function gosearch(){
s=searchform.searchstr.value;
if(s==""||s.length<3){alert('Введите строку для поиска (не менее 3-х символов)!');return}
if(s.indexOf("<")>=0||s.indexOf(">")>=0){alert('Строка содержит недопустимые символы!');return}
location.href="?p=11&searchstr="+searchform.searchstr.value;
//searchform.submit()
}

function addbasket(itemid){
n=document.getElementById("itemCount"+itemid).value;
if(isNaN(n)){alert("Введите требуемое количество!");return}
if(n<=0){alert("Введите требуемое количество!");return}
nmax=document.getElementById("itemCountMax"+itemid).value;
nbasket=document.getElementById("itemCountBasket"+itemid).value;
if(Number(n)+Number(nbasket)>Number(nmax)){alert("На складе отсутствует нужное Вам количество товара!");return}
dooper("add",itemid,n)
}

function dooper(op,i,n){with(operform){oper.value=op; itemid.value=i; itemcount.value=n;
d=new Date(); killer.value=d.getTime(); submit();
}}