function display_swf(url,w,h){



document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write('CODEBASE="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab#version=8,0,22,0" ');
document.write(' WIDTH="' + w + '" HEIGHT="' + h + '" ALIGN="">');
document.write('<PARAM NAME="movie" VALUE="'+ url +'">');
document.write('<PARAM NAME="quality" VALUE="high">');
//document.write('<PARAM NAME="bgcolor" VALUE="'+#ffffff+'">');
document.write('<PARAM NAME="wmode" VALUE="transparent">');
//document.write('<PARAM NAME="allowScriptAccess" VALUE="'+always+'">');
document.write('<EMBED SRC="'+ url +'" ');
document.write(' WIDTH="' + w + '" HEIGHT="' + h + '" QUALITY="high" ');
document.write(' ALLOWSCRIPTACCESS="always" ALIGN="" WMODE="transparent" TYPE="application/x-shockwave-flash" ');
document.write(' PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" >');
document.write('</EMBED>');
document.write('</OBJECT>');



}
