var newwin;
function doWin(url)
{

	var screenWidth		=	(screen.width - 300) / 2;
	var screenHeight	=	(screen.height - 300) / 2;


	var winWidth		=	915;
	var winHeight		=	650;
	
	if(screen.width == 800)
	{
		winWidth  = 790;
		winHeight = 550;
	}
	
	
	page = "/meta/video/vid_pop.html?URL=" + url;
	
	newwin = window.open(url,"vidPop","width="+winWidth+",height="+winHeight+",toolbar=no,resizable=yes,scrollbars=yes,location=no,directories=no,menubar=no,top=10,left=10");
	
	
	newwin.focus
}