//open a pop-up window for the team bio
function openWin(url,winWidth,winHeight){
aWindow=window.open(url,"thewindow","toolbar=no,width=" + winWidth + ",height=" + winHeight + ",status=no,scrollbars=yes,resizable=yes,menubar=no,top=40,left=170");
}

//for Game
function openWinGame(url,winWidth,winHeight){
aWindow=window.open(url,"thewindowGame","toolbar=no,width=" + winWidth + ",height=" + winHeight + ",status=no,scrollbars=yes,resizable=yes,menubar=no,top=40,left=170");
}

function spawnWindow(URL,Name,features) { 
	window.open(URL,Name,features); 
} 

function openTSSDemo() {
	var winl, wint;
	winl = (screen.width / 2) - (800 / 2); //center the window right to the left
	wint = (screen.height / 2) - (600 / 2); //center the window top to bottom
	newWindow = window.open('../TSSprototype.htm', 'startWin', 'toolbars=no,menubars=no,scrollbars=auto,width=800,height=600,top='+wint+',left='+winl);
}