// JavaScript Document

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

function checkFN(fn)
{
	if(fn == "")
	{
		alert("First Name is required");

	}
}

function checkLN(ln)
{
	if(ln == "")
	{
		alert("Last Name is required");

	}
}

function validateForm(){
	if(document.contactusForm.firstname.value == ""){
		alert("Please enter your first name");
		return false;
	}
	if(document.contactusForm.lastname.value == ""){
		alert("Please enter your last name");
		return false;
	}
	if(document.contactusForm.email.value == ""){
		alert("Please enter your email");
		return false;
	}else{
		document.contactusForm.submit();
		return true;
	}
}

function displayLayer(obj){
	theId = document.getElementById(obj);
	theId.style.display = "";
}