// JavaScript Document

// PlaySwfJS
// ------------------------------------------------------

function PlaySwfJS( swfname, 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=\"" + swfname + "\">"
		html += "<param name=\"quality\" value=\"high\">"
		html += "<embed src=\"" + swfname + "\" quality=\"high\" width=\""+ width + "\" height=\"" + height + "\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>"
		html += "</object>"
	document.write( html );
  
}