function checkv() {
   if (subscribev.email.value.match(/^[w]{1}[w.-_]*@[w]{1}[w-_.]*.[w]{2,4}$/i) &&
      !subscribev.fio.value=='') { window.open('','ok',
      'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=100,left=100,width=800,height=600')
      return true;
   } else {
	alert ('Неполные или некорректные данные.');
	subscribev.email.focus();
	return false;
   }
}


 function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}
