function doLoad(numimg,Width,Height) {
	Width+=20;
	Height+=20;
	if (screen.availWidth){
		b=(screen.availHeight - Height < 0) ? 0:(screen.availHeight - Height)/2-50;
		a=(screen.availWidth -Width < 0) ? 0:(screen.availWidth - Width)/2-50;
	}else{
		a=0;
		b=0;
	}
  	window.open(numimg,'','menubar=yes,scrollbars=no,resizable=no,width='+Width+',height='+Height+',top='+b+',left='+a);
	return false ;
}

function test(){
   for (i=0, testvar=true; i < document.frm.elements.length; i++){
      if (document.frm.elements[i].value=='' && document.frm.elements[i].type=='text'){
         testvar=false;
         break;
      }
   }
   if (testvar==false){
	alert('Вы указали не все данные!');
	return false;
   }else{
	document.frm.setAttribute('target','myframe');
	document.frm.doSend.value = ' Ждите... ';
   }
}
