// JavaScript Documentif (window.addEventListener) {    // create the keys and konami variables    var keys = [],        konami = "38,38,40,40,37,39,37,39,66,65";     // bind the keydown event to the Konami function    window.addEventListener("keydown", function(e){        // push the keycode to the 'keys' array        keys.push(e.keyCode);         // and check to see if the user has entered        // the Konami code        if (keys.toString().indexOf(konami) >= 0) {            // do something such as:			toggleBox('head_expand',1)           loadContent();             // and finally clean up the keys array            keys = [];        };    }, true);};	isExp = 0;	isExpS = 0;	//alert(isExp);function mouseReallyOut(oThis, e) {if (e.relatedTarget) {return(e.relatedTarget != oThis && e.relatedTarget.parentNode != oThis);}return(e.toElement != oThis && e.toElement.parentNode != oThis);}loadContent = function(){		if (isExp == 0) {	isExp=1;	//alert(isExp);	var nflash = document.createElement("object");nflash.setAttribute("classid","clsid:D27CDB6E-AE6D-11cf-96B8-444553540000");nflash.setAttribute("codebase","http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0");nflash.setAttribute("onmouseout", "mouseOut()");nflash.setAttribute("width", "728"); nflash.setAttribute("height", "300");var flashParam = document.createElement("param");flashParam.setAttribute("name","movie");flashParam.setAttribute("value","ads/transporter3/728x90_exp.swf");var flashParam1 = document.createElement("param"); flashParam1.setAttribute("name","wmode");flashParam1.setAttribute("value","transparent");var flashParam2 = document.createElement("embed");flashParam2.setAttribute("src","ads/transporter3/728x90_exp.swf");flashParam2.setAttribute("width","728");flashParam2.setAttribute("height","300");flashParam2.setAttribute("isLive","true");flashParam2.setAttribute("allowScriptAccess","Always");flashParam2.setAttribute("wmode","transparent");var totalString= (nflash&&flashParam&&flashParam1&&flashParam2);document.getElementById('head_expand').appendChild(totalString);}}skyContent = function(){	if (isExpS == 0) {isExpS=1;	//alert(isExp);var nflash = document.createElement("object");nflash.setAttribute("classid","clsid:D27CDB6E-AE6D-11cf-96B8-444553540000");nflash.setAttribute("codebase","http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0");nflash.setAttribute("width", "300"); nflash.setAttribute("height", "600");var flashParam = document.createElement("param");flashParam.setAttribute("name","movie");flashParam.setAttribute("value","play/120_expanded_play.swf");var flashParam1 = document.createElement("param"); flashParam1.setAttribute("name","wmode");flashParam1.setAttribute("value","transparent");var flashParam2 = document.createElement("embed");flashParam2.setAttribute("src","play/120_expanded_play.swf");flashParam2.setAttribute("width","300");flashParam2.setAttribute("height","600");flashParam2.setAttribute("isLive","true");flashParam2.setAttribute("allowScriptAccess","Always");flashParam2.setAttribute("wmode","transparent");var totalString= (nflash&&flashParam&&flashParam1&&flashParam2);document.getElementById('sky_expand').appendChild(totalString);}}function removeContent() {document.getElementById('head_expand').innerHTML = "";toggleBox('head_expand',0)isExp = 0;}function removeContentSky() {document.getElementById('sky_expand').innerHTML = "";toggleBox('sky_expand',0)isExpS = 0;}toggleBox = function (szDivID, iState) // 1 visible, 0 hidden{    if(document.layers)	   //NN4+    {       document.layers[szDivID].visibility = iState ? "show" : "hide";    }    else if(document.getElementById)	  //gecko(NN6) + IE 5+    {        var obj = document.getElementById(szDivID);        obj.style.visibility = iState ? "visible" : "hidden";    }    else if(document.all)	// IE 4    {        document.all[szDivID].style.visibility = iState ? "visible" : "hidden";    }}