var win=null;
function VideoWin(videoPage)
{
var VideoWidth = 640;
var VideoHeight = 400;
var VideoLeft =	(screen.width)?(screen.width-VideoWidth)/2:100; //(screen.availWidth - VideoWidth ) / 2; //Set distance from side
var VideoTop = (screen.height)?(screen.height-VideoHeight)/2:100; //(screen.availHeight - VideoHeight) / 2; //Set distance from top
var name = "VideoLibrary";
settings='width='+VideoWidth+',height='+VideoHeight+',top='+VideoTop+',left='+VideoLeft+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(videoPage,name,settings);

}
