function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

var emailregex = /^[a-z][a-z\-\_0-9\.]+@[a-z-_0-9\.]+\.[a-z]{2,4}$/i

function validate()
 {
var flag;
var strtxt="";

if (document.contact.Name.value == "")
	{ strtxt+= "- Name\n"; }

if (document.contact.Email.value == "")
	{ strtxt+= "- Email\n"; }
	
if (strtxt!="")
	{
	window.alert("Please fill in the following required fields in order to proceed:\n" + strtxt);
	return false;
	}
else
	{ return true; }
}