// JScript source code
function LaunchSwf(strSwfLoad,lHeight,lWidth,bgColor)
{
    //alert(strSwfLoad)
     strSwfLoad = unescape(strSwfLoad);
     //alert(strSwfLoad)
     lHeight = lHeight
     lWidth = lWidth
     bgColor = bgColor   
    //alert(strSwfLoad);
    var swfHtml
    
	swfHtml = '<div id="flash" style="position:absolute;top:0px;left:0px; z-index:10;width: 786px; height:472px;" >'
					+ '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="ScienceSleuths"'
					+ 'width="786" height="472"'
					+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
					+ '<param name="movie" value="'+strSwfLoad+'" />'
					+ '<param name="menu" value="false" />'
					+ '<param name="quality" value="high" />'
					+ '<param name="scale" value="noscale" />'					
					+ '<param name="bgcolor" value="#ffffff" />'
					+ '<param name="wmode" value="transparent" />'
					+ '<embed src="'+strSwfLoad+'"  play="true"  quality="high" menu="false"  bgcolor="#ffffff" width="786" height="472"name="ScienceSleuths"  align="top"  allowScriptAccess="sameDomain"  scale="noscale"  type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" />'
					+ '</object>'
					+ '</div>'	
                                
    document.getElementById("oSwf").innerHTML = swfHtml;
	
	var oBrowserName=navigator.appName

	if (oBrowserName=="Netscape")
	{ 		
		document.forms["frmSwf"].elements["ScienceSleuths"].focus();
	}
	else 
	{ 
		var oScienceSleuths =  document.getElementById("ScienceSleuths");   
		oScienceSleuths.focus();
	}
		
	  
                                  
}