function LoadObject(movie,height,width,id,mode,vars) 
{ 
document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' height='"+height+"' width='"+width+"' id='"+id+"' name='"+id+"' Viewastext>"); 
document.write("<param name='allowScriptAccess' value='sameDomain'/>");
document.write("<param name='movie' value='"+movie+"' />");
document.write("<param name='quality' value='high' />");
document.write("<param name='Flashvars' value='"+vars+"' />");
if(mode){
document.write("<param name='wmode' value='transparent'/>");
}
document.write("<embed src='"+movie+"?"+vars+"' quality='high' width='"+width+"' height='"+height+"' name='"+id+"' swLiveConnect='true'  align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"); 
document.write("</object>"); 
}