function WriteSwf(img,wsize,hsize,flashname){
document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\""+wsize+"\" height=\""+hsize+"\" id=\""+flashname+"\">");
document.write("<param name=\"name\" value=\""+flashname+"\">");
document.write("<param name=\"movie\" value=\""+img+"\">");
document.write("<param name=\"quality\" value=\"high\">");
document.write("<param name=\"wmode\" value=\"transparent\">");
document.write("<embed src=\""+img+"\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\""+wsize+"\" height=\""+hsize+"\" name=\""+flashname+"\"></embed>");
document.write("</object>");
}

function WriteSwfAfter(img,wsize,hsize,flashname)
{
window.onload= function (){
document.getElementById("flashContent").innerHTML = ("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\""+wsize+"\" height=\""+hsize+"\" id=\""+flashname+"\"><param name=\"name\" value=\""+flashname+"\"><param name=\"movie\" value=\""+img+"\"><param name=\"quality\" value=\"high\"><param name=\"wmode\" value=\"transparent\"><embed src=\""+img+"\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\""+wsize+"\" height=\""+hsize+"\" name=\""+flashname+"\"></embed></object>");}

}
