function popUp_news(anc_str)
{
	if(anc_str == undefined)
	{
		anc_str = "";
	}
	openWindow("popup/news.html" + anc_str, "w_news", "550", "600");
}

function popUp_intro()
{
	openWindow("popup/intro.html", "w_intro", "500", "600");
}

function popUp_cast()
{
	openWindow("popup/cast.html", "w_cast", "900", "700");
}

function popUp_trailer()
{
	openWindow("popup/trailer.html", "w_trailer", "900", "700");
}

function popUp_theater()
{
	openWindow("/popup/theater.html", "w_theater", "500", "600");
}

function popUp_report()
{
	openWindow("popup/report.html", "w_report", "900", "700");
}

function popUp_location()
{
	openWindow("popup/location.html", "w_location", "900", "700");
}

function openWindow(url_str, win_id, _w, _h)
{
	newWin = window.open(url_str,win_id,"toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + _w + ",height=" + _h);
    newWin.focus();
}


function closeWin()
{
	window.close();
	window.opener.focus();
}

