﻿function ShowFlashObject(filename, width, height) {
    document.write('<object width="' + width + '" height="' + height + '" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0">');
	document.write('<param movie="' + filename + '" />');
	document.write('<param quality="high" />');
	document.write('<embed src="' + filename + '" width="' + width + '" height="' + height + '" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" quality="high"></embed>');
	document.write('</object>');
}