// Created on 2001.8.2
// Last update on 2001.11.18
// All right reservded. Copyright 2001 by GREEN


document.write('<STYLE TYPE = "text/css">');
document.write('<!--');
if (navigator.appVersion.indexOf("Mac",0) >= 0)
	document.write('#Copyright { font-size:10px; }');
else
	document.write('#Copyright { font-size:11px; }');
document.write('-->');
document.write('</STYLE>');

function start() {
	if (navigator.userAgent.indexOf("MSIE") >= 0) {
		document.all["Copyright"].style.pixelTop = document.body.clientHeight - 55;
		document.all["Movie"].style.pixelTop = document.body.clientHeight / 2 - 260;
		document.all["Movie"].style.pixelLeft = document.body.clientWidth / 2 - 275;
		document.all["Copyright"].style.visibility = "visible";
		document.all["Movie"].style.visibility = "visible";
	}
	else {
		if (document.getElementById) {
			document.getElementById("Copyright").style.top = (window.innerHeight - 55) + "px";
			document.getElementById("Movie").style.top = (window.innerHeight / 2 - 260) + "px";
			document.getElementById("Movie").style.left = (window.innerWidth / 2 - 275) + "px";
			document.getElementById("Copyright").style.visibility = "visible";
			document.getElementById("Movie").style.visibility = "visible";
		}
		if (document.layers) {
			document.layers["Copyright"].top = window.innerHeight - 54;
			document.layers["Movie"].top = window.innerHeight / 2 - 260;
			document.layers["Movie"].left = window.innerWidth / 2 - 275;
			document.layers["Copyright"].visibility = "show";
			document.layers["Movie"].visibility = "show";
		}
	}
}

