<!--

function formCheck(theform){

	var message = ""
	
	if (theform.prefix.value == "") {
	    message += " *Salutation\n";
	}
	
	if (theform.firstname.value == ""){
		message += " *First Name\n";
	}

	if (theform.lastname.value == ""){
		message += " *Last Name\n";
	}

	if (theform.address_1.value == ""){
		message += " *Address\n";
	}

	if (theform.city.value == ""){
		message += " *City\n";
	}

	if (theform.state.value == ""){
		message += " *State/Province\n";
	}
	
	if (theform.zip.value == ""){
		message += " *Zip/Postal Code\n";
	}

    if (theform.country.value == ""){
		message += " *Country\n";
	}

	if ((theform.areacode.value == "") || (isNaN(theform.areacode.value))) {
		message += " *Area Code\n";
	}

	if (theform.phone.value == ""){
		message += " *Phone\n";
	}

	if((theform.email.value.indexOf('@') == -1) || (theform.email.value.length == "")){
		message += " *E-Mail\n";
	}

    if(theform.acct.value == ""){
		message += " *Acct. No.\n";
	}

    if(theform.expdate_mon.selectedIndex == -1) {
	    message += " *Exp. Date\n";
	}
    
    if(theform.expdate_yr.selectedIndex == -1) {
	    message += " *Exp. Date\n";
	}

    if (theform.cardname.value == ""){
		message += " *Name on Card\n";
	}
		
	if(message == "") {
		return true;
	}else{
		alert("Please fill in or correct the following field(s) before continuing:\n" + message);
		return false; 
	}

}
//-->