 if (top.location != self.location ) {
    top.location = self.location 
  }

function setfocus_a(){
	isn.name.focus()
}
function emailCheck() {
ttt=document.isn.name.value;
txt=document.isn.email.value;
com=document.isn.text.value;

if (ttt == ""){
	alert("Please Enter your First and Last Name");
	isn.name.focus()
	return false;
}
if (txt.indexOf("@")<3){
	alert("I'm sorry. This email address seems wrong. Please" + " check the username or include the '@' sign.");
	isn.email.select()
	return false;
}
if ((txt.indexOf(".com")<5)&&(txt.indexOf(".org")<5)
&&(txt.indexOf(".gov")<5)&&(txt.indexOf(".net")<5)
&&(txt.indexOf(".mil")<5)&&(txt.indexOf(".edu")<5)){
	alert("I'm sorry. This email address seems wrong. Please" + " check the domain for accuracy. (It should include a suffix: " + ".com, .edu, .net, .org, .gov or .mil)");
	isn.email.select()
	return false;
   }
if (com == ""){
	alert("Please write your email message.");
	isn.text.focus()
	return false;
}
return true;
}
