<!-- 


function flash_seting(src, w, h, bg, wmode){
var str = src.split('.');
document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'  width='"+w+"' height='"+h+"' id='"+str[0]+"' align='middle'>");
document.write("<param name='movie' value='"+src+"' />");
document.write("<param name='quality' value='high' />");
document.write("<param name='bgcolor' value='"+bg+"' />");
if(wmode == "yes"){
	document.write("<param name='wmode' value='transparent' />");
}
document.write("<embed src='"+src+"' quality='high' bgcolor='"+bg+"' width='"+w+"' height='"+h+"' name='"+str[0]+"' align='middle'  type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
document.write("</object>");
}
//-->  

