function showFlash(flashfile, w, h) {
 document.write('<object id="flaa" classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="'+w+'" height="'+h+'">');
 document.write(' <param name="movie" value="'+flashfile+'">');
 document.write(' <param name="quality" value="High">');
 document.write(' <param name="wmode" value="transparent">');
 document.write(' <embed wmode="transparent" src="'+flashfile+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" quality="High" width="'+w+'" height="'+h+'">');
 document.write('</object>');
}

function showDivx(divxfile, w, h) {
 document.write('<object classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616" width="'+w+'" height="'+h+'" codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab">');
 document.write('<param name="src" value="'+divxfile+'" />');
 document.write('<param name="autoPlay" value="true" />'); 
 document.write('<param name="mode" value="mini" />'); 
 document.write('<param name="bannerEnabled" value="false" />');
 document.write('<param name="disableDimmer" value="true" />');
 document.write('<embed type="video/divx" mode="mini" disableDimmer="true" src="'+divxfile+'" width="'+w+'" height="'+h+'" pluginspage="http://go.divx.com/plugin/download/"></embed>');
 document.write('</object>');
}