//------------------------------------------------------------------------------

//-- Launch windows
//------------------------------------------------------------------------------

var win = "";

function F_OpenWindow ( mypage, myname, w, h, allow_scroll )
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+allow_scroll+',noresize'
	win = window.open(mypage, myname, winprops);
	win.focus();
}

function F_LaunchVid_LowQual ()
{
	F_OpenWindow ( '/video/videoplayer_low.html', 'VideoWindow', '342', '300', 'no' );
}

//------------------------------------------------------------------------------
//------------------------------------------------------------------------------

