function createFlashObject(filename,width,height){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width='+width+' height='+height+' border="0">');
document.write('<param name="movie" value='+filename+'>');
document.write('<param name="quality" value="high">');
document.write('<embed src='+filename+' quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width='+width+' height='+height+'></embed>');
document.write('</object>');
}

function createFlashAdvertObject(filename,width,height){
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width='+width+' height='+height+' align="middle">');
document.write('<param name="allowScriptAccess" value="sameDomain" />');
document.write('<param name="movie" value='+filename+'>');
document.write('<param name="menu" value="false" />');
document.write('<param name="quality" value="high">');
document.write('<param name="wmode" value="transparent" />');
document.write('<embed src='+filename+' menu="false" quality="high" wmode="transparent" width='+width+' height='+height+' name="advert" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('</object>');
}

function createFlashMovieClip(filename,width,height){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width='+width+' height='+height+'>');
document.write('<param name="movie" value='+filename+'>');
document.write('<param name="allowfullscreen" value="true" />');
document.write('<embed src="http://www.dailymotion.com/swf/30p2BgK38G8qt6Ytl" type="application/x-shockwave-flash" width='+width+' height='+height+' allowfullscreen="true" />');
document.write('</object>');
}