function run_movie(swf, w, h) 
{ 
	var nl = "\n";
	var text  = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + w + '" height="' + h + '">' + nl;
	text += '<param name="allowScriptAccess" value="sameDomain" />' + nl;
	text += '<param name="movie" value="' + swf + '" />' + nl;
	text += '<param name="menu" value="false" />' + nl;
	text += '<param name="quality" value="high" />' + nl;
	text += '<param name="bgcolor" value="#ffffff" />' + nl;
	text += '<embed src="' + swf + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + w + '" height="' + h + '" menu="false" bgcolor="#ffffff" allowScriptAccess="sameDomain" />' + nl;
	text += '</object>' + nl;

	document.write(text);
	return 1;
}
