
// JavaScript Document

// playFlash
// ------------------------------------------------------

function playFlash( swfuri, width, height ) {

	var html = ""
		html += "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab\" width=\"" + width + "\" height=\"" + height + "\">"
		html += "<param name=\"movie\" value=\"" + swfuri + "\">"
		html += "<param name=\"quality\" value=\"high\">"
		html += "<embed src=\"" + swfuri + "\" quality=\"high\" width=\""+ width + "\" height=\"" + height + "\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>"
		html += "</object>"

	document.write( html );
  
}