function writeObjectFlash(src, width, height) {

	document.writeln("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' height='"+height+"' width='"+width+"'>");
	document.writeln("<param name='movie' value='"+src+"'>");
	document.writeln("<param name='quality' value='best'>");
	document.writeln("<param name='play' value='true'>");
	document.writeln("<embed height='"+height+"' pluginspage='http://www.macromedia.com/go/getflashplayer' src='"+src+"' type='application/x-shockwave-flash' width='"+width+"' quality='best' play='true'>");
	document.writeln("</object>");

}
