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