function closeme(){
	window.close();
}

function MM_openBrWindow(theURL,winName,features) {
  apdDisplay = window.open(theURL,winName,features);
  apdDisplay.focus();
}

function checkfields()
{
	if (document.contactsend1.name.value == "")
		{
		alert ('Please fill in your name so we may contact you!');
		return false;
		}
	if (document.contactsend1.email.value == "") 
		{
		alert ('Please fill in your email address so we may contact you!');
		return false;
		}
	else
		{
		return true
		}
}