function getFlash (file,width,height)
{		
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/get/shockwave/cabs/flash/swflash.cab#version=5,0,30,0" width="' + width + '" height="' + height + '">');
	document.write('<param name="movie" value="' + file + '" />');
	document.write('<param name="quality" value="high" />');		
	document.write('<param name="play" value="true">');
	document.write('<param name="wmode" value="opaque"/>');
	document.write('<embed src="' + file + '" quality="high" wmode="opaque" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="' + width + '" height="' + height + '"/>');
	document.write('</object>');
		
}
