function writeFlash(width,height,id,website_swf,file_name){
        document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ');
        document.write('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ');
        document.write('width="'+width+'" height="'+height+'" id="'+id+'" align="middle">');
        document.write('<param name="allowScriptAccess" value="sameDomain" />');
        document.write('<param name="movie" value="'+website_swf+file_name+'" />');
        document.write('<param name="menu" value="false" /><param name="quality" value="high" />');
        document.write('<param name="bgcolor" value="#0F345E" /><param name="wmode" value="transparent">');
        document.write('<embed src="'+website_swf+file_name+'" menu="false" quality="high" bgcolor="#0F345E" ');
        document.write('width="'+width+'" height="'+height+'" name="'+id+'"');
        document.write('align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" ');
        document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" /></object>');    
}
