var ExitConfirmSkip = false;
var MsgExitRoot = "\n" + "You can continue and come back later.  Or call us:\n\n" + 
	"1 888 MSTARLABS (1 888 678-2752)\n\n";
	
function ExitBeforeUnloadCheck() {
var bPrompt = !ExitConfirmSkip;
ExitConfirmSkip = false;
if (bPrompt)
	return MsgExitRoot;
}



var Msg = "You have not filled in any contact information,\n" +
	"or the email or phone number appears to be incomplete.\n\n" + 
	"We are happy to receive your comments,\n" + 
	"but if you have questions please return to the form\n" + 
	"and fill in a complete email address or phone number.\n\n" + 
	"OK continues and Cancel returns to the form."; 	
	
function FieldCheck() {	
var sEmail = document.getElementById('Email').value;
var iAt = sEmail.indexOf("@") + 1;
var sPhone = document.getElementById('Phone').value;
var bMessageBox;
bMessageBox = ((iAt > 1) && (sEmail.length - iAt >= 5)) || (sPhone.length >= 7);
if (!bMessageBox)
	bMessageBox = window.confirm(Msg);
	return bMessageBox;
} 