function menu_swf(src, w, h)
{
	html = '';
	html += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="/cabs/flash/swflash.cab#version=2,0,0,11" NAME="link" ID="link" width="'+w+'" height="'+h+'">';
	html += '<param name="allowScriptAccess" value="always" />';
	html += '<param name="movie" value="'+src+'">';
	html += '<param name="quality" value="high">';
	html += '<param name="bgcolor" !value="transparent">';
	html += '<param name="swliveconnect" value="true">';
	html += '<param name="menu" value="false">';
	html += '<embed src="'+src+'" quality=high bgcolor="transparent" width="'+w+'" height="'+h+'" loop=true quality=high type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>';
	html += '<\/object>';
	document.write(html);
}
