﻿function formverif(theForm){  if (theForm.yemail.value == "")  {    alert("Your email address?");    theForm.yemail.focus();    return (false);  }   if (theForm.ylastname.value == "")  {    alert("Your last name?");    theForm.ylastname.focus();    return (false);  }  if (theForm.yfirstname.value == "")  {    alert("Your first name?");    theForm.yfirstname.focus();    return (false);  }   if (theForm.ycompany.value == "")  {    alert("The name of your company?");    theForm.ycompany.focus();    return (false);  }   if (theForm.yprovince.value == "")  {    alert("Your province or state?");    theForm.yprovince.focus();    return (false);  }   if (theForm.ytelephone.value == "")  {    alert("Your phone number?");    theForm.ytelephone.focus();    return (false);  }	var radioSelected = false;  for (i = 0;  i < theForm.ylanguage.length;  i++)  {    if (theForm.ylanguage[i].checked)        radioSelected = true;  }  if (!radioSelected)  {    alert("Your preference for publication's language?");    return (false);  }  return (true);}function Subscribe (f) {			f.submit();	}