function newWin(url,size,varflag) 
{
 	if (size == "s"){ var width = 300; var height = 300 }
 	else if (size == "m"){ var width = 515; var height = 350 }
 	else { var width = 540; var height = 685; }

 	var left = Math.floor( (screen.width - width) / 2);
 	var top = Math.floor( (screen.height - height) / 2);
 	var winParms = ",top=" + top + ",left=" + left + ",height=" + height + ",width=" + width;
 	if (parseInt(navigator.appVersion) >= 4) { window.focus(); }
 	if(varflag==1)
	 	a = window.open(url,"listen","scrollbars=1,resizable=0" + winParms);
	else
		a = window.open(url,"download","scrollbars=1,resizable=0" + winParms);
	a.focus();
}



function submitGetNotified()
{
	var urlVal;

	urlVal="getnotified.asp?email="+ document.getNoti.email.value
    window.open(urlVal,"GetNotified","width=500,height=250,toolbar=0");
    var a = window.setTimeout("document.getNoti.submit();",500);
}

