
		function newWin(url, title, w, h, s) {
			w1=window.open(url, title, 'resizable=yes,menubar=no,status=no,scrollbars='+s+',width='+w+',height='+h);
			w1.focus();
		}
		
		function doBag(id)
		{
				
				cnt = eval('document.product_'+id+'.cnt.value');
				if(cnt<1)
				{
					alert('Вы не выбрали необходимое количество.');
					return;
				}
				else
				{
					newWin('', 'addtobag', 200, 100, 0);
					eval('document.product_'+id+'.submit();');
				}
			
		}
		
		function doSend()
	{
		phone = document.order.phone.value;
		email = document.order.email.value;
		fio = document.order.contactPerson.value;
		
				
		if(email.length >0 )
		{
			if((email.indexOf('@',0))<=0){alert("Некорректный e-mail"); return;}
			if((email.indexOf('.',0))<=0){alert("Некорректный e-mail"); return;}
		}
		
		if(phone.length >0 )
		{
			var res=-1;
			for(i=0; i<10; i++)
			{
				if((phone.indexOf(i,0))>=0){res=1;}
			}

			if(res<0){alert("Некорректный телефон"); return;}
			
		}
		
		if(fio.length <1 || (phone.length <1 && email.length <1) ){alert("Заполните, пожалуйста обязательные поля"); return;}
		
		document.order.submit();
		
		

	}

