<!-- begin
// no subscribe popup

function GoTo(s)
{
	var d = s.options[s.selectedIndex].value;
		window.top.location.href = d;
		s.selectedIndex=0;
}


function emailcheck(cur)
{
var string1=cur._FROMEMAIL.value

if (string1.indexOf("@")==-1)
{
alert('Oops! Email address is missing the required @ ("at" sign.)')
return false
}
if (string1.indexOf(".")==-1)
{
alert('Oops! Email address is missing the required . (dot)')
return false
}
alert('NOTE: To activate your free subscription, you must respond to the email just sent you titled "[Surfing the Net with Kids] Your Reply Needed."  ')
}

function emailchecknoalert(cur)
{
var string1=cur._FROMEMAIL.value

if (string1.indexOf("@")==-1)
{
alert('Oops! Email address is missing the required @ ("at" sign.)')
return false
}
if (string1.indexOf(".")==-1)
{
alert('Oops! Email address is missing the required . (dot)')
return false
}
}
function Start(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,menubar=no,width=510,height=575, location=no,scrollbars=yes,resizable=yes, ");
}

function PopEmail(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,width=400,height=320, location=no,scrollbars=yes,resizable=yes, ");
}

// End -->

