function createFlashObj(width,height,src){
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+"' id='' align='middle'>")
document.write("<param NAME='movie'		VALUE='"+src+"'>")
document.write("<param	NAME='wmode'	VALUE='transparent'>")
document.write("<param	NAME='quality'	VALUE='high'>")
document.write("<param  NAME='scale'  	VALUE='noscale'>")
document.write("<param  NAME='menu' VALUE='false'>")
document.write("<param	NAME='bgcolor'	VALUE='#FFFFFF'>")
document.write("<EMBED wmode='transparent' WIDTH='"+width+"' HEIGHT='"+height+"' TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer' src='"+src+"'>");
document.write("</EMBED>")
document.write("</object>")
}