﻿function Flashload(filename, width, height,ID) {
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" ');
document.write('width="' + width + '" height="' + height + '" id="'+ ID +'">');
document.write('<PARAM name="movie" value="' + filename + '">');
document.write('<PARAM name=quality value=high>');
document.write('<EMBED src="' + filename + '" QUALITY=high ');
document.write('PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" ');
document.write('TYPE="application/x-shockwave-flash" width="' + width + '" height="' + height + '" name="'+ ID +'"></EMBED>');
document.write('</OBJECT>');
}