<!--
function setFocus() {
 	document.subForm.email.focus();
}
function checkEadd(email)	{
if (document.subForm.email.value == "") { 
  alert("Please enter your email address first");
  setFocus(email);
  return false; }
else if (email.value.length) 	{
	var is_there_at = email.value.indexOf('@');
	var find_period = email.value.indexOf('.', is_there_at+3);
	var find_suffix = email.value.length - find_period;
	if (is_there_at < 2)	{
		alert("Your address is incomplete. \n A COMPLETE internet e-mail address \n has a user name, an @ symbol, \n and a service provider, \n such as \'MyUserName@aol.com\' ");
		setFocus(email);
		return false;
	}
	else if (find_period < 4)	{
		alert("Your address is incomplete. \n A COMPLETE internet e-mail address \n includes a host name \n such as \'earthlink.net\' or \'aol.com\' ");
		setFocus(email);
		return false;
	}
	else if (find_suffix < 3)	{
		alert("Your address is incomplete. \n A COMPLETE internet e-mail address \n ends in a suffix \n such as \'.com\' or \'.net\' ");
		setFocus(email);
		return false;
	}
else { 
  popThis = window.open('http://naughtypress.com/subforms/confirmation.html', 'newWin', 'width=344,height=77,innerWidth=344,innerHeight=77,left=200,top=200,scrollbars=0,resizable=0,menubar=0,location=0,toolbar=0,status=0,directories=0');
  setTimeout('document.subForm.reset()', '4000');
  return true; }
}
else	return null;
}
// -->