<!--***//
function gotosite(site) {
if (site !="") 	{
parent.location=site
				}
}


function TextboxAnchor() {
var txtBox=document.getElementById("Email");
if (txtBox!=null ) txtBox.focus();
}


<!-- Begin Email Validtiion/Submit
function submitEmailAdd() {
var R_VALUE = "NO";
if ((document.ApexEmail.EmailAdd.value.length==0) || (document.ApexEmail.EmailAdd.value==null)) {
     alert("APEX ALERT: Incorrect Email - Please enter your correct email address to add to our mailing list");
   }
   else {document.ApexEmail.EmailAdd.value = document.ApexEmail.EmailAdd.value.toUpperCase(); 
	document.getElementById('E_REM').value = R_VALUE;
    document.ApexEmail.submit();
   }
<!--  makeAlert("APEX ALERT: Incorrect Email" , "Please enter your correct email address to remove from our mailing list"); 
}
//  End -->

function submitEmailRemove() {
var R_VALUE = "YES";
if ((document.ApexEmail.EmailAdd.value.length==0) || (document.ApexEmail.EmailAdd.value==null)) {
     alert("APEX ALERT: Incorrect Email - Please enter your correct email address to remove from our mailing list");
   }
   else {document.ApexEmail.EmailAdd.value = document.ApexEmail.EmailAdd.value.toUpperCase();
		document.getElementById('E_REM').value = R_VALUE;
		document.ApexEmail.submit();
   }
<!--  makeAlert("APEX ALERT: Incorrect Email" , "Please enter your correct email address to remove from our mailing list"); 
}
//  End -->
