function open1(theForm){

var why = "";

if (theForm.Company) why += isEmpty(theForm.Company.value, "Company Name"); 
if (theForm.FirstName) why += isEmpty(theForm.FirstName.value, "First Name");
if (theForm.LastName) why += isEmpty(theForm.LastName.value, "Last Name"); 

if (theForm.WorkPhone) why += isEmpty(theForm.WorkPhone.value, "Contact Number");


if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value); 
if (theForm.CaptchaV2) why += captchaIsInvalid(theForm, "Enter Word Verification in box below", "Please enter the correct Word Verification as seen in the image");
      
if(why != ""){
     alert(why);
     return false;
}
else {
 	document.getElementById('step1').style.display = "none";
        document.getElementById('step2').style.display = "block";
}	
     
}

function open2(){
      document.getElementById('step1').style.display = "none";
      document.getElementById('step2').style.display = "none";

}
