window.onload = positionControl ;
window.onresize = positionControl ;
function positionControl() {
	var screenHeight = document.documentElement.clientHeight; 
	if( screenHeight > 760){ 
	document.getElementById("gateMainSwf").style.height = screenHeight-109;
	document.getElementById("gateFooter").style.position = "absolute";
	document.getElementById("gateFooter").style.bottom = "0" ;
	document.getElementById("gateFooter").style.left = "0";
	}
	else {
	document.getElementById("gateFooter").style.position = "";
	document.getElementById("gateFooter").style.bottom = "" ;
	document.getElementById("gateFooter").style.left = "";
	document.getElementById("gateMainSwf").style.height = "760px";
	}
	var screenWidth = document.documentElement.clientWidth; 
	document.getElementById("gateMainSwf").style.marginLeft = -(1280 - screenWidth)/2;	
}

	//-----------------------------------------------------------------------------
	//	flash object active
	//	activeSwf( obj_id, obj_src, obj_width, obj_height, obj_transparent )
	//-----------------------------------------------------------------------------
	function activeSwf( o_id, o_src, o_width, o_height, o_transparent ){
		obj =  "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" width=\""+ o_width +"\" height=\""+ o_height +"\" id=\""+ o_id +"\" align=\"middle\">"
			+  "<param name=\"allowScriptAccess\" value=\"always\" />"
			+  "<param name=\"allowFullScreen\" value=\"false\" />"
			+  "<param name=\"movie\" value=\""+ o_src +"\" />"
			+  "<param name=\"quality\" value=\"high\" />";

		if( o_transparent == "transparent" ) obj += "<param name=\"wmode\" value=\"transparent\" />";

		obj += "<param name=\"bgcolor\" value=\"#ffffff\" />"
			+  "<embed src=\""+ o_src +"\" quality=\"high\"";

		if( o_transparent == "transparent" ) obj += "wmode=\"transparent\"";

		obj += "bgcolor=\"#ffffff\" width=\""+ o_width +"\" height=\""+ o_height +"\" name=\""+ o_id +"\" align=\"middle\" allowScriptAccess=\"always\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />"
			+  "</object>";

		document.writeln( obj );
	}