function getObj(name) {
	if (document.getElementById) {
		return document.getElementById(name);
	} else if (document.all) {
		return document.all[name];
	} else if (document.layers) {
		return document.layers[name];
	} else return false;
}

function play(movID, isHD)
{
	winURL="/cinema/mov.php?id="+movID+"&isHD="+isHD;
	
	var winWidth = 480;
	var winHeight = 300;
	
	if(isHD == true)
	{
		winWidth = 720;
		winHeight = 432;
	}
	
	leftPos = Math.floor((screen.width-winWidth)/2);
	topPos = Math.floor((screen.height-winHeight)/2);
	
	var winProps="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+winWidth+",height="+winHeight+",top="+topPos+",left="+leftPos;

	var vidWindow = window.open(winURL,null,winProps);
	vidWindow.focus();
}
