<!--//
var isIE;
if (navigator.appName == "Microsoft Internet Explorer") {
	isIE = true;
}
if (navigator.appName == "MSIE") {
	isIE = true;
}
function loadMovie(src,h,w,fvars) {
	var text = "";
	if (isIE) {
		text	 = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
		text	= text + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,14,0" ';
		text	= text + 'width="' + w + '" height="' + h + '">';
		text = text + '<param name="movie" value="' + src + '" />';
		text = text + '<param name="allowScriptAccess" value="sameDomain" />';
		text = text + '<param name="wmode" value="transparent" />';
		text = text + '<param name="quality" value="high" />';
		if (fvars.length > 0) {
			text = text + '<param name="FlashVars" value="' + fvars + '" />';
		}
		text = text + '</object>';
	} else {
		text	= '<embed src="' + src + '" ';
		text	= text + 'quality="high" ';
		text	= text + 'pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" ';
		text	= text + 'type="application/x-shockwave-flash" ';
		text	= text + 'width="' + w + '" height="' + h + '" ';
		text	= text + 'allowscriptaccess="samedomain" ';
		text	= text + 'wmode="transparent"';
		if (fvars.length > 0) {
			text	= text + ' flashvars="' + fvars + '"';
		}		
		text	= text + '></embed>';
	}
	//alert(text);
	document.write(text);
}
//-->