// generate flash script
	var gf = function (url, id, width, height, vars) 
	{
		B=(function x(){})[-5]=='x'?'FF3':(function x(){})[-6]=='x'?'FF2':/a/[-1]=='a'?'FF':'\v'=='v'?'IE':/a/.__proto__=='//'?'Saf':/s/.test(/a/.toString)?'Chr':/^function \(/.test([].sort)?'Op':'Unknown';
	
		if (B == 'IE' || B == 'Chr') {
			var txt = '<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 ? ' width="' + width + '"' : '') + (height ? ' height="' + height + '"' : '') +
				'id="' + id + '" align="middle">' + "\n"; 
			txt+= '<param name="allowScriptAccess" value="always" />';
			txt+= '<param name="flashVars" value="' + vars + '" />';
			txt+= '<param name="movie" value="' + url + '" />';
			txt+= '<param name="quality" value="high" />';
			txt+= '<param name="wmode" value="transparent" />';
			txt+= '<embed src="' + url + '" quality="high" wmode="transparent" style="' + 
			(width ? ' width:' + width + 'px;' : '') + (height ? ' height:' + height + 'px;' : '') +
			'" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashVars="' + vars + '"></embed>';
			txt+= '</object>';
	
			return txt;
			//eval("window." + id + " = document.getElementById('" + id + "');");
		} else {
			txt = '<embed id="'+id+'" src="'+url+'" quality="high" wmode="transparent" style="width:'+width+'px; height:'+height+'px;" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashVars="'+vars+'"></embed>';
			return txt;
	//        document.write(txt);
		}
	}
	
	// write document contents
	function documentwrite(src)
	{
		document.write(src);
	}
// Flash Activating Script
// 2005-12-05
// inome _at_ nhncorp.com
// Don't Edit Below! Never!

// s: source url
// d: flash id
// w: source width
// h: source height
// t: wmode ("" for none, transparent, opaque ...)
/*
function mf(s,d,w,h,t){
        return "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width="+w+" height="+h+" id="+d+"><param name=wmode value="+t+" /><param name=movie value="+s+" /><param name=quality value=high /><embed src="+s+" quality=high wmode="+t+" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash\" width="+w+" height="+h+"></embed></object>";
}

// write document contents
function documentwrite(src){
        document.write(src);
}

// assign code innerHTML
function setcode(target, code){
        target.innerHTML = code;
}

*/