var newwin;
function doWin(url)
{
	var screenWidth		=	(screen.width - 300) / 2;
	var screenHeight	=	(screen.height - 300) / 2;

	var winWidth		=	600;
	var winHeight		=	360;
	
	if(screen.width == 800)
	{
		winWidth  = 700;
		winHeight = 360;
	}
	
	page = "../videos/vid_pop.html?URL=" + url;

	newwin = window.open(url,"vidPop","width="+winWidth+",height="+winHeight+",toolbar=no,resizable=no,scrollbars=no,location=no,directories=no,menubar=no,top=10,left=10");
	
	newwin.focus
}