function remote_flash(file, width, height) {

document.write('    <object width="'+width+'" height="'+height+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="flashitem">\
     <param name="allowScriptAccess" value="sameDomain" />\
     <param name="movie" value="'+file+'" />\
     <param name="quality" value="high" />\
     <embed width="'+width+'" height="'+height+'" src="'+file+'" quality="high" name="tech" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\
    </object>');

}