document.write(html);

getElementById_s("movieContainer").style.zIndex=1;
objects = document.getElementsByTagName("object");

function getElementById_s(id){
var obj = null;
if(document.getElementById){
/* Prefer the widely supported W3C DOM method, if
available:-
*/
obj = document.getElementById(id);
}else if(document.all){
/* Branch to use document.all on document.all only
browsers. Requires that IDs are unique to the page
and do not coincide with NAME attributes on other
elements:-
*/
obj = document.all[id];
}
/* If no appropriate element retrieval mechanism exists on
this browser this function always returns null:-
*/
return obj;
}


/*for (var i = 0; i < objects.length; i++)
{
    objects[i].outerHTML = objects[i].outerHTML;
}*/

		var flash;
		
		window.onload = function() {
			if(navigator.appName.indexOf("Microsoft") != -1) {
				flash = window.FMSPlayer;
				getElementById_s("movieContainer").style.zIndex=1;
			}else {
				flash = window.document.FMSPlayer
				getElementById_s("movieContainer").style.zIndex=1;
			}
		}
		function assignPlayer()
		{
		if(navigator.appName.indexOf("Microsoft") != -1) {
				flash = window.MP_001 ;
			}else {
				flash = window.document.MP_001 
			}	
		}
		
		 
		var trueFalse=false;
		function debugOnOff()
		{
			 trueFalse=!trueFalse;
			 
		    flash.getDebugInfo(trueFalse);
		 }
		 function showMe(name)
		 {
		    var obj=getElementById_s(name);
			if(obj!=null)
			obj.style.zIndex=30;
		 }
		 function hideMe(name)
		 {
		      var obj=getElementById_s(name);
			if(obj!=null)
			obj.style.zIndex=1;
		 }
		 function showLayer(_trueFalse)
		 {
			//alert("hit"); 
			if(_trueFalse)
			{
			
			showMe("HomeMainContentDiv");
		    showMe("movieContainer");
		    showMe("layer1");
			}
			else
			{
			hideMe("HomeMainContentDiv");
		    hideMe("movieContainer");
		    hideMe("layer1");
			}
			 
			 
			 
		 }

 

