function pop(url,w,h,scroll){
  if(scroll==1) bars='yes';
	else bars='no';
  popwindow= open(url, "popwin","width=" + w + "px,height==" + h + "px,top=0,left=0;fullscreen=no,scrollbars==" + bars + ",location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes");
}
function TestFields() {
	if (document.orderform.name.value=='') {
		alert('Необходимо ввести свое имя!');
		return false;
	};
	if (document.orderform.surname.value=='') {
		alert('Необходимо ввести свою фамилию!');
		return false;
	};
	if (document.orderform.email.value=='') {
		alert('Необходимо ввести e-mail!');
		return false;
	};
	if (document.orderform.addr.value=='') {
		alert('Необходимо ввести e-mail!');
		return false;
	};
	return true;
}