// movies menu javascript

function Location(url) {
	if ( url != "pass" ) {
		top.location.href = url;
	}
}
function Location2(url) {
	if ( url != "pass" ) {
		parent.main.location.href = url;
	}
}
//popup start
function popWindow( url, width, height, windowName )
{
	 var left = (screen.width - width) / 2;
    var top = (screen.height - height) / 2;
    
    win=window.open(url, windowName, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top);
}


function enter(){popWindow("flash/index.html", 768, 490, "flash_Win");}
function news(){popWindow("news/index.html", 580, 600, "pop_Win");}
function dvd(){popWindow("dvd/index.html", 580, 600, "pop_Win");}
function trailer(){popWindow("trailer/index.html", 580, 600, "pop_Win");}
function download(){popWindow("download/index.html", 580, 600, "pop_Win");}


//popup end

function SetWindowName()
{
	window.name="UsagiWindow";
}