<!-- BEGIN HIDING
function focus_on() {
	if (document.emailspecialsform.email.value == "Your E-mail") {
		document.emailspecialsform.email.value = ""
		return;
	}	
}
function focus_off() {
	if (document.emailspecialsform.email.value == "") {
		document.emailspecialsform.email.value = "Your E-mail"
		return;
	}
}
function SignUpEmailSpecials() {
	if ((document.emailspecialsform.email.value == "Your E-mail") || (document.emailspecialsform.email.value == "")) {
		alert("Please enter your email address.");
		document.emailspecialsform.email.focus();
		return false;
	} else {
		a=document.emailspecialsform.email.value.indexOf("@")
 		dot=document.emailspecialsform.email.value.indexOf(".",a)
		comma=document.emailspecialsform.email.value.indexOf(",")
		space=document.emailspecialsform.email.value.indexOf(" ")
		lastdot=document.emailspecialsform.email.value.lastIndexOf(".")+1
		len=document.emailspecialsform.email.value.length
		if ((a>0) && (dot>(1+1)) && (comma==-1) && (space==-1) && (len-lastdot >=2) && (len-lastdot<=3)) {
			newwin = window.open("", "EmailSpecialsWindow", "screenX=160,screenY=200,top=200,left=160,width=480,height=205,menubar=no,resizable=yes,scrollbars=no,status=yes,toolbar=no");
			// BEGIN NEW WINDOW HTML
			newwin.document.write ('<head>')
			newwin.document.write ('<Title>StarKids Club Email Specials Subscription</Title>')
			newwin.document.write ('<style type="text/css"><!--')
			newwin.document.write ('td { font-family: Verdana, Arial; font-size: 8pt; text-decoration: none; }')
			newwin.document.write ('a { text-decoration: none; }')
			newwin.document.write ('a:hover { text-decoration: underline;}-->')
			newwin.document.write ('</style>')
			newwin.document.write ('</head>')
			newwin.document.write ('<body bgcolor="white" text="black">')
			newwin.document.write ('<center>')
			newwin.document.write ('<table border="0" cellpadding="0" cellspacing="0" width="450" height="26" bgcolor="#6699cc">')
			newwin.document.write ('<tr>')
			newwin.document.write ('<td>')
			newwin.document.write ('<center>')
			newwin.document.write ('<font color="white"><b>StarKids Club Email Specials Subscription</b></font></center>')
			newwin.document.write ('</td>')
			newwin.document.write ('</tr>')
			newwin.document.write ('</table>')
			newwin.document.write ('<table border="0" cellpadding="0" cellspacing="1" width="450" height="152" bgcolor="#6699cc">')
			newwin.document.write ('<tr>')
			newwin.document.write ('<td valign="top" bgcolor="#f0f8ff">')
			newwin.document.write ('<center>')
			newwin.document.write ('<br>')
			newwin.document.write ('<center><font size="2"><br><br><br><b>Loading...</b><br><br></font></center>');
			newwin.document.write ('<br>')
			newwin.document.write ('<br>')
			newwin.document.write ('<br>')
			newwin.document.write ('</center>')
			newwin.document.write ('</td>')
			newwin.document.write ('</tr>')
			newwin.document.write ('</table>')
			newwin.document.close();
			// END NEW WINDOW HTML		
			document.emailspecialsform.action = "http://www.starkidsclub.com/EmailSpecials/Subscribe.asp";
			document.emailspecialsform.method = "post";
			document.emailspecialsform.target= "EmailSpecialsWindow"
			document.emailspecialsform.submit();
		} else {
 	  		alert("Please enter an exact email address.\n\"" + document.emailspecialsform.email.value + "\" is invalid.")
			document.emailspecialsform.email.focus();
			document.emailspecialsform.email.select();
			return false;			
		}
	}
}
document.write ('<form name="emailspecialsform" method="post" onsubmit="javascript:return SignUpEmailSpecials()">')
document.write ('<table border="0" cellpadding="0" cellspacing="0" width="140">')
document.write ('<tr height="16">')
document.write ('<td valign="top" height="16"><font face="Verdana" size="1"><b>Receive E-mail Specials:</b></font></td>')
document.write ('</tr>')
document.write ('</table>')
document.write ('<table border="0" cellpadding="0" cellspacing="0" width="140">')
document.write ('<tr height="20">')
document.write ('<td height="20" width="85"><font face="Verdana" size="1"><input type="text" name="email" size="13" value="Your E-mail" class="input1" onfocus="javascript:focus_on();" onblur="javascript:focus_off();"></font></td>')
document.write ('<td height="20"><input type="image" height="23" width="23" border="0" name="Sign Up Email Specials!" src="/images/butt1.gif" alt="Sign Up Email Specials!"></td>')
document.write ('</tr>')
document.write ('</table>')
document.write ('</form>')
// END HIDING -->