<!-- // to hide script contents from old browsers
function onCallFlashObject(objName, nWidth, nHeight)
{
	var szProtocol = (window.location.protocol == "https:") ? "https" : "http";

	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="'+szProtocol+'://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+nWidth+'" height="'+nHeight+'">');
	document.write('<param name="movie" value="'+objName+'">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="menu" value="false">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<param name="allowScriptAccess" value="sameDomain">');
	document.write('<param name="allowFullScreen" value="false">');
	document.write('<embed src="'+objName+'" quality="high" pluginspage="'+szProtocol+'://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+nWidth+'" height="'+nHeight + '"></embed>');
	document.write('</object>');

	return;
}
// end hiding -->

