var SWF_classid = 'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000';
var SWF_codebase = 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0';
var SWF_pluginspage = 'http://www.macromedia.com/go/getflashplayer';

function RunFlash(SWF_filepath, SWF_width, SWF_height){
	html = '<object classid='+ SWF_classid + ' codebase='+ SWF_codebase + ' width=' + SWF_width + ' height=' + SWF_height +'>\n';
	html += '<param name="allowScriptAccess" value="sameDomain">\n';
	html += '<param name="movie" value=' +SWF_filepath+ '>\n';
	html += '<param name="quality" value="high">\n';
	html += '<embed src='+ SWF_filepath +' quality="high" pluginspage='+ SWF_pluginspage +' type="application/x-shockwave-flash" width='+ SWF_width +' height='+ SWF_height +'></embed>\n';
	html += '</object>\n';
	
	document.write( html );
	
	//alert( html );
}
