function swfloaded(swf,width,height,idname,img){
document.open();
document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width=' + width + ' height='+ height + ' id=' + idname + ' align="middle">');
document.writeln('<param name="allowScriptAccess" value="sameDomain" />');
document.writeln('<param name="movie" value=' + swf + ' /><param name="menu" value="false" /><param name="quality" value="high" /><param name="scale" value="exactfit" /><param name="bgcolor" value="#ffffff" />');
document.writeln('<embed src=' + swf + ' menu="false" quality="high" scale="exactfit" bgcolor="#ffffff" width=' + width + ' height=' + height + ' name=' + idname + ' align="middle" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
//
//document.writeln('<object data=' + img + ' type=""image/gif">');
//document.writeln('</object>');
//
//document.writeln('<noembed>');
//document.writeln('<img src=' + img );
//document.writeln('</noembed>');
//
document.writeln('</embed>');
document.writeln('</object>');
document.close();
}
