// JavaScript Document
function namosw_goto_byselect(sel, targetstr)
{
  var index = sel.selectedIndex;
  if (sel.options[index].value != '') {
     if (targetstr == 'blank') {
       window.open(sel.options[index].value, 'win1');
     } else {
       var frameobj;
       if ((frameobj = eval(targetstr)) != null)
       frameobj.location = sel.options[index].value;
     }
  }
}

//java-скрипт, открывающий новое окно со спсиком товаров в корзине
	function open_window(link,w,h) {
		var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
		newWin = window.open(link,'newWin',win);
	};
function validate() {
	if (document.form1.name.value.length<1) {
		alert("Введите имя");
		return false;
	};
	if (document.form1.address.value.length<1) {
		alert("Введите адрес для доставки заказа");
		return false;
	};
	if (document.form1.email.value.length<1) {
		alert("Введите адрес Вашей электронной почты");
		return false;
	};
	return true;
}
