<!--
function popWin(theURL,winWidth,winHeight,showLocation,showMenu,scrollWin,resizeWin) {
	var winX = (screen.width - winWidth) / 2;
	var winY = (screen.height - winHeight) / 2;
	windowAttributes= ('width='+winWidth+',height='+winHeight+'location='+'showLocation'+',menubar='+showMenu+',scrollbars='+scrollWin+",resizable="+resizeWin+",left="+winX+",top="+winY);
	window.open(theURL, "", windowAttributes);
}

function launch980(theStr) {
	var s = new String(theStr);
	s += (s.search(/\?/) != -1) ? '&' : '?';
	s += 'randomurl=' + Math.round(Math.random() * 1000000);
	popWin(s, "980", "500", "no", "no", "no", "no");

}
function launchSite() {
	launch980('intro.asp');
}
// -->

