<!--
function gogetit(url) {
        if (url != "") {
                self.location = url
        }
}

function emailCheck() {

	if (document.frmSignUp.NewsLetterEmail.value == "")
	{
	 alert(" Email Addresses Needed")
		document.frmSignUp.NewsLetterEmail.focus();
		return false;
	}

	txtEmail=document.frmSignUp.NewsLetterEmail.value;
	if (txtEmail.indexOf("@") < 1){
		alert("This email address seems incorrect. Please"
		+" check the prefix and '@' sign.");
		document.frmSignUp.NewsLetterEmail.focus();
		return false;	
	}

	if (txtEmail.indexOf(".") < 1){
		alert("This email address seems incorrect. Please"
		+" check the prefix and '.' sign.");
		document.frmSignUp.NewsLetterEmail.focus();
		return false;	
	}

	if (txtEmail.indexOf("You@email.com") == 0){
		alert("This email address seems incorrect. Please"
		+" check your e-mail address.");
		document.frmSignUp.NewsLetterEmail.focus();
		return false;	
	}
	
	document.frmSignUp.iFlag.value = 1;
	return true;

}

function openCenterWindow(theURL,winName,features, myWidth, myHeight, isCenter) {
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}

function popUp(url) {
	sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=250,height=300');
	self.name = "mainWin";
}

function breakOut()
{	//alert("i am in breakout"); 
      if (window != top) {top.location.href = location.href}; 
}

function NewWindow(mypage, myname, w, h, scroll) 
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
function reloadPage(init) 
{ 
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.pgW=innerWidth; document.pgH=innerHeight; onresize=reloadPage; }}
  else if (innerWidth!=document.pgW || innerHeight!=document.pgH) {location.reload()};
}

reloadPage(true);

//-->

