var browser_name = navigator.appName;
var stat=0;
var win;

function w(url,W,H){
  if (stat==1&&browser_name == "Microsoft Internet Explorer" ){ win.close();}
   win=window.open( url, "picture", "width="+W+",height="+H+",left="+(screen.width-W)/2+",top="+(screen.height-H)/2+",toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no"  );
   win.focus();
   stat=1;
  }
function check(){
 if (document.frm.lastname.value==""){
    alert("Ошибка. Должно быть указано имя");
	  document.frm.lastname.focus();
	  return;
   }

 if (document.frm.phone.value==""){
    alert("Ошибка. Должен быть указан телефон.");
    document.frm.phone.focus();
	  return;
 	 }
 document.frm.submit();
}	
