
<!-- hide from JavaScript-challenged browsers
function openOlWindowStd() 
	{
	var w = 700;
	var h = 520;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	popupWin = window.open('/olorder/ot_popupintro.php', 'order','resizable,scrollbars,dependent,menubar=yes,status=yes,width='+w+',height='+h+',left='+winl+',top='+wint);
	}

function openWindow(id) 
	{
	var w = 620;
	var h = 420;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	popupWin = window.open('synopsis.php?movie_id='+id, 'remote','scrollbars,resizable,dependent,width='+w+',height='+h+',left='+winl+',top='+wint);
	}

function openWindow2(id) 
	{
	var w = 620;
	var h = 420;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	popupWin = window.open('ksynopsis.php?movie_id='+id, 'remote','scrollbars,resizable,dependent,width='+w+',height='+h+',left='+winl+',top='+wint);
	}

function openWindowOrder(id) 
	{
	var w = 700;
	var h = 520;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;

	popupWin = window.open('ot_popupintro.php?session_id='+id, 'order','scrollbars,status,resizable,dependent,width='+w+',height='+h+',left='+winl+',top='+wint);
	}

// done hiding -->