// standard popup window - set height and width
function popup(win_url,win_handle,x,y) 
{
	winhandle=window.open(win_url,win_handle,"menubar=no,scrollbars=yes,status=no,width=" + x + ",height=" + y);
	winhandle.focus();
}

// standard user profile
function profile(UID) 
{
	window.open("../user/profile/?uid=" + UID,"profile","menubar=no,scrollbars=no,status=no,width=766,height=500,resizable=no");
}

// standard boxscore popup 
function boxscore(GameID,teamfee,theme) 
{
   winhandle=window.open("../NFL/boxscore.asp?GameID=" + GameID + "&teamfee=" + teamfee + "&theme=" + theme,"boxscore","menubar=no,scrollbars=yes,status=no,width=850,height=500,resizable=yes");
   winhandle.focus();
}

// standard context help popup 
function contexthelp(sectionID) 
{
   winhandle=window.open("../nfl-l/contexthelp.asp?id=" + sectionID,"contexthelp","menubar=no,scrollbars=yes,status=no,width=350,height=420,resizable=no");
   winhandle.focus();
}