<!--
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 randomURL(theStr) {
	var s = new String(theStr);
	s += (s.search(/\?/) != -1) ? '&' : '?';
	s += 'randomurl=' + Math.round(Math.random() * 1000000);
	return s;
}

function launchIt(theStr) {
	popWin(randomURL(theStr), "700", "500", "no", "no", "no", "yes");

}

function launchSite() {
	launchIt('intro.htm');
}
// -->
