function open3(theForm){
var why = "";
if (theForm.FirstName) why += isEmpty(theForm.FirstName.value, "First Name");
if (theForm.LastName) why += isEmpty(theForm.LastName.value, "Last Name"); 
if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value); 
if (theForm.Company) why += isEmpty(theForm.Company.value, "Company Name"); 
if (theForm.HomeAddress) why += isEmpty(theForm.HomeAddress.value, "Home Address"); 
if (theForm.HomeCity) why += isEmpty(theForm.HomeCity.value, "Home City"); 
if (theForm.HomeState) why += isEmpty(theForm.HomeState.value, "Home State"); 
if (theForm.HomeZip) why += isEmpty(theForm.HomeZip.value, "Home Zipcode"); 
if (theForm.HomeCountry) why += checkDropdown(theForm.HomeCountry.value, "Home Country"); 
if (theForm.HomePhone) why += isEmpty(theForm.HomePhone.value, "Home Phone Number"); 
if (theForm.CAT_Custom_67851) why += checkDropdown(theForm.CAT_Custom_67851.value, "Time Zone");
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('step3').style.display = "none";
        document.getElementById('step4').style.display = "block";
}	
     
}

function open4(){
      document.getElementById('step3').style.display = "none";
      document.getElementById('step4').style.display = "none";

}
/*
function close1(){
      document.getElementById('step1').style.display = "block";
      document.getElementById('step2').style.display = "none";

}

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

}

function close3(){
      document.getElementById('step1').style.display = "none";
      document.getElementById('step2').style.display = "none";
      document.getElementById('step3').style.display = "block";
      document.getElementById('step4').style.display = "none";
      document.getElementById('stpname').innerHTML = "Step 3";
}
*/