function showPopup(movie) {
	var width = 410;
	var height = 404;
	var howTall = (screen.availHeight - height) / 2;
	var howWide = (screen.availWidth - width) / 2;
	var popupWindow = window.open("popup.php?movie=" + movie, "remote", "width=" + width + ",height=" + height + ",screenX=100,screenY=100,top=" + howTall + ",left=" + howWide + "menubar=no,noresize,resizable=no,titlebar=no,status=no,toolbar=no,scrollbars=yes");
	popupWindow.focus(); 
}

if (((navigator.userAgent.indexOf("mac") != -1)  || (navigator.userAgent.indexOf("Mac") != -1)) && (navigator.appName == "Microsoft Internet Explorer"))
	window.location = "error.html"