function popup_null() {
}

function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function gotosite(site) {
  if (site != "") {
  self.location=site
  } 
}


function do_submit() {
// Verify that required data exists prior
// to submitting review to server.

var buttonwaspressed = false;


   	// MUST ENTER FIRST NAME
	if (theform.FirstName.value.length == 0) {
		alert( "Please enter your First Name");
		theform.FirstName.focus();
		return;
	}

   	// MUST ENTER LASTNAME
	if (theform.LastName.value.length == 0) {
		alert( "Please enter your Last Name");
		theform.LastName.focus();
		return;
	}



	// BLOCK FOLLOWING E-MAIL ADDRESSES

    if ((theform.name.value == "spaininpain@aol.com") ||(theform.name.value == "giveufun@aol.com") ||(theform.name.value == "forexdragon@aol.com") ||(theform.name.value == "dario07@aol.com")) {
        alert("Submissions from your e-mail address have been blocked. For more information, please contact our office directly.");
        theform.name.focus();
        return false;
    }

    if ((theform.emailaddress.value == "spaininpain@aol.com") || (theform.emailaddress.value == "giveufun@aol.com") || (theform.emailaddress.value == "forexdragon@aol.com") ||(theform.name.value == "dario07@aol.com")) {
        alert("Submissions from your e-mail address have been blocked. For more information, please contact our office directly.");
        theform.emailaddress.focus();
        return false;
    }

    if ((theform.emailaddress2.value == "spaininpain@aol.com") || (theform.emailaddress2.value == "giveufun@aol.com") || (theform.emailaddress2.value == "forexdragon@aol.com") ||(theform.name.value == "dario07@aol.com")) {
        alert("Submissions from your e-mail address have been blocked. For more information, please contact our office directly.");
        theform.emailaddress2.focus();
        return false;
    }

    buttonwaspressed = true;
	theform.submit();

}


