function flashObj(fileName, width, height, id, flashValue){
        document.write('<div style="z-index:0"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+width+'" height="'+height+'" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="'+id+'">'
        +'<param name="movie" value="'+fileName+'">'
        +'<param name="quality" value="high">'
        +'<param name="wmode" value="transparent">'
        +'<param name="allowScriptAccess" value="always" />'
        +'<param name="FlashVars" value="'+flashValue+'" />'
        +'<embed src="'+fileName+'" FlashVars="'+flashValue+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" showLiveConnect="true" name="'+id+'" allowScriptAccess="always"></embed>'
        +'</object></div>');
}