/*
This file contains minifications of the following files, also available on the server in their original form:

cookies.js - Free - http://www.quirksmode.org/js/cookies.html
json2.js - Public Domain - http://www.JSON.org/js.html
wz_tooltip.js - LGPL - http://www.walterzorn.com/tooltip/tooltip_e.htm
rounded_corners.inc.js - LGPL - http://www.curvycorners.net
swfobject.js - MIT - http://blog.deconcept.com/swfobject/
dombuilder.js - Free - http://www.danwebb.net/
sortabletable\sortabletable.js - Apache - http://webfx.eae.net/dhtml/sortabletable/sortabletable.html
sifr.js - LGPL - http://novemberborn.net/sifr3
*/
if(!this.JSON){
JSON=function(){
function f(n){
return n<10?"0"+n:n;
}
Date.prototype.toJSON=function(){
return this.getUTCFullYear()+"-"+f(this.getUTCMonth()+1)+"-"+f(this.getUTCDate())+"T"+f(this.getUTCHours())+":"+f(this.getUTCMinutes())+":"+f(this.getUTCSeconds())+"Z";
};
var m={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r","\"":"\\\"","\\":"\\\\"};
function stringify(_3,_4){
var a,i,k,l,v;
switch(typeof _3){
case "string":
if(/["\\\x00-\x1f]/.test(_3)){
return "\""+_3.replace(/[\x00-\x1f\\"]/g,function(a){
var c=m[a];
if(c){
return c;
}
c=a.charCodeAt();
return "\\u00"+Math.floor(c/16).toString(16)+(c%16).toString(16);
})+"\"";
}
return "\""+_3+"\"";
case "number":
return isFinite(_3)?String(_3):"null";
case "boolean":
return String(_3);
case "null":
return "null";
case "object":
if(!_3){
return "null";
}
if(typeof _3.toJSON==="function"){
return stringify(_3.toJSON());
}
a=[];
if(_3.constructor===Array){
l=_3.length;
for(i=0;i<l;i+=1){
a.push(stringify(_3[i],_4)||"null");
}
return "["+a.join(",")+"]";
}
if(_4){
l=_4.length;
for(i=0;i<l;i+=1){
k=_4[i];
if(typeof k==="string"){
v=stringify(_3[k],_4);
if(v){
a.push(stringify(k)+":"+v);
}
}
}
}else{
for(k in _3){
if(typeof k==="string"){
v=stringify(_3[k],_4);
if(v){
a.push(stringify(k)+":"+v);
}
}
}
}
return "{"+a.join(",")+"}";
}
}
return {stringify:stringify,parse:function(_c,_d){
var j;
function walk(k,v){
var i,n;
if(v&&typeof v==="object"){
for(i in v){
if(Object.prototype.hasOwnProperty.apply(v,[i])){
n=walk(i,v[i]);
if(n!==undefined){
v[i]=n;
}
}
}
}
return _d(k,v);
}
if(/^[\],:{}\s]*$/.test(_c.replace(/\\./g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(:?[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))){
j=eval("("+_c+")");
return typeof _d==="function"?walk("",j):j;
}
throw new SyntaxError("parseJSON");
}};
}();
}
function createCookie(_13,_14,_15){
if(_15){
var _16=new Date();
_16.setTime(_16.getTime()+(_15*24*60*60*1000));
var _17="; expires="+_16.toGMTString();
}else{
var _17="";
}
document.cookie=_13+"="+_14+_17+"; path=/";
}
function readCookie(_18){
var _19=_18+"=";
var ca=document.cookie.split(";");
for(var i=0;i<ca.length;i++){
var c=ca[i];
while(c.charAt(0)==" "){
c=c.substring(1,c.length);
}
if(c.indexOf(_19)==0){
return c.substring(_19.length,c.length);
}
}
return null;
}
function eraseCookie(_1d){
createCookie(_1d,"",-1);
}
var config=new Object();
var tt_Debug=true;
var tt_Enabled=true;
var TagsToTip=true;
config.Above=false;
config.BgColor="#d6c4e4";
config.BgImg="";
config.BorderColor="#000000";
config.BorderStyle="solid";
config.BorderWidth=1;
config.CenterMouse=false;
config.ClickClose=false;
config.CloseBtn=false;
config.CloseBtnColors=["#990000","#FFFFFF","#DD3333","#FFFFFF"];
config.CloseBtnText="&nbsp;X&nbsp;";
config.CopyContent=true;
config.Delay=400;
config.Duration=0;
config.FadeIn=0;
config.FadeOut=0;
config.FadeInterval=30;
config.Fix=null;
config.FollowMouse=true;
config.FontColor="#000000";
config.FontFace="Verdana,Geneva,sans-serif";
config.FontSize="12px";
config.FontWeight="normal";
config.Left=false;
config.OffsetX=14;
config.OffsetY=8;
config.Opacity=90;
config.Padding=3;
config.Shadow=false;
config.ShadowColor="#C0C0C0";
config.ShadowWidth=5;
config.Sticky=false;
config.TextAlign="left";
config.Title="";
config.TitleAlign="left";
config.TitleBgColor="";
config.TitleFontColor="#ffffff";
config.TitleFontFace="";
config.TitleFontSize="";
config.Width=0;
function Tip(){
tt_Tip(arguments,null);
}
function TagToTip(){
if(TagsToTip){
var t2t=tt_GetElt(arguments[0]);
if(t2t){
tt_Tip(arguments,t2t);
}
}
}
var tt_aElt=new Array(10),tt_aV=new Array(),tt_sContent,tt_scrlX=0,tt_scrlY=0,tt_musX,tt_musY,tt_over,tt_x,tt_y,tt_w,tt_h;
function tt_Extension(){
tt_ExtCmdEnum();
tt_aExt[tt_aExt.length]=this;
return this;
}
function tt_SetTipPos(x,y){
var css=tt_aElt[0].style;
tt_x=x;
tt_y=y;
css.left=x+"px";
css.top=y+"px";
if(tt_ie56){
var _22=tt_aElt[tt_aElt.length-1];
if(_22){
_22.style.left=css.left;
_22.style.top=css.top;
}
}
}
function tt_Hide(){
if(tt_db&&tt_iState){
if(tt_iState&2){
tt_aElt[0].style.visibility="hidden";
tt_ExtCallFncs(0,"Hide");
}
tt_tShow.EndTimer();
tt_tHide.EndTimer();
tt_tDurt.EndTimer();
tt_tFade.EndTimer();
if(!tt_op&&!tt_ie){
tt_tWaitMov.EndTimer();
tt_bWait=false;
}
if(tt_aV[CLICKCLOSE]){
tt_RemEvtFnc(document,"mouseup",tt_HideInit);
}
tt_AddRemOutFnc(false);
tt_ExtCallFncs(0,"Kill");
if(tt_t2t&&!tt_aV[COPYCONTENT]){
tt_t2t.style.display="none";
tt_MovDomNode(tt_t2t,tt_aElt[6],tt_t2tDad);
}
tt_iState=0;
tt_over=null;
tt_ResetMainDiv();
if(tt_aElt[tt_aElt.length-1]){
tt_aElt[tt_aElt.length-1].style.display="none";
}
}
}
function tt_GetElt(id){
return (document.getElementById?document.getElementById(id):document.all?document.all[id]:null);
}
function tt_GetDivW(el){
return (el?(el.offsetWidth||el.style.pixelWidth||0):0);
}
function tt_GetDivH(el){
return (el?(el.offsetHeight||el.style.pixelHeight||0):0);
}
function tt_GetScrollX(){
return (window.pageXOffset||(tt_db?(tt_db.scrollLeft||0):0));
}
function tt_GetScrollY(){
return (window.pageYOffset||(tt_db?(tt_db.scrollTop||0):0));
}
function tt_GetClientW(){
return (document.body&&(typeof (document.body.clientWidth)!=tt_u)?document.body.clientWidth:(typeof (window.innerWidth)!=tt_u)?window.innerWidth:tt_db?(tt_db.clientWidth||0):0);
}
function tt_GetClientH(){
return (document.body&&(typeof (document.body.clientHeight)!=tt_u)?document.body.clientHeight:(typeof (window.innerHeight)!=tt_u)?window.innerHeight:tt_db?(tt_db.clientHeight||0):0);
}
function tt_GetEvtX(e){
return (e?((typeof (e.pageX)!=tt_u)?e.pageX:(e.clientX+tt_scrlX)):0);
}
function tt_GetEvtY(e){
return (e?((typeof (e.pageY)!=tt_u)?e.pageY:(e.clientY+tt_scrlY)):0);
}
function tt_AddEvtFnc(el,_29,_2a){
if(el){
if(el.addEventListener){
el.addEventListener(_29,_2a,false);
}else{
el.attachEvent("on"+_29,_2a);
}
}
}
function tt_RemEvtFnc(el,_2c,_2d){
if(el){
if(el.removeEventListener){
el.removeEventListener(_2c,_2d,false);
}else{
el.detachEvent("on"+_2c,_2d);
}
}
}
var tt_aExt=new Array(),tt_db,tt_op,tt_ie,tt_ie56,tt_bBoxOld,tt_body,tt_flagOpa,tt_maxPosX,tt_maxPosY,tt_iState=0,tt_opa,tt_bJmpVert,tt_t2t,tt_t2tDad,tt_elDeHref,tt_tShow=new Number(0),tt_tHide=new Number(0),tt_tDurt=new Number(0),tt_tFade=new Number(0),tt_tWaitMov=new Number(0),tt_bWait=false,tt_u="undefined";
function tt_Init(){
tt_MkCmdEnum();
if(!tt_Browser()||!tt_MkMainDiv()){
return;
}
tt_IsW3cBox();
tt_OpaSupport();
tt_AddEvtFnc(document,"mousemove",tt_Move);
if(TagsToTip||tt_Debug){
tt_SetOnloadFnc();
}
tt_AddEvtFnc(window,"scroll",function(){
tt_scrlX=tt_GetScrollX();
tt_scrlY=tt_GetScrollY();
if(tt_iState&&!(tt_aV[STICKY]&&(tt_iState&2))){
tt_HideInit();
}
});
tt_AddEvtFnc(window,"unload",tt_Hide);
tt_Hide();
}
function tt_MkCmdEnum(){
var n=0;
for(var i in config){
eval("window."+i.toString().toUpperCase()+" = "+n++);
}
tt_aV.length=n;
}
function tt_Browser(){
var n,nv,n6,w3c;
n=navigator.userAgent.toLowerCase(),nv=navigator.appVersion;
tt_op=(document.defaultView&&typeof (eval("w"+"indow"+"."+"o"+"p"+"er"+"a"))!=tt_u);
tt_ie=n.indexOf("msie")!=-1&&document.all&&!tt_op;
if(tt_ie){
var _34=(!document.compatMode||document.compatMode=="BackCompat");
tt_db=!_34?document.documentElement:(document.body||null);
if(tt_db){
tt_ie56=parseFloat(nv.substring(nv.indexOf("MSIE")+5))>=5.5&&typeof document.body.style.maxHeight==tt_u;
}
}else{
tt_db=document.documentElement||document.body||(document.getElementsByTagName?document.getElementsByTagName("body")[0]:null);
if(!tt_op){
n6=document.defaultView&&typeof document.defaultView.getComputedStyle!=tt_u;
w3c=!n6&&document.getElementById;
}
}
tt_body=(document.getElementsByTagName?document.getElementsByTagName("body")[0]:(document.body||null));
if(tt_ie||n6||tt_op||w3c){
if(tt_body&&tt_db){
if(document.attachEvent||document.addEventListener){
return true;
}
}else{
tt_Err("wz_tooltip.js must be included INSIDE the body section,"+" immediately after the opening <body> tag.");
}
}
tt_db=null;
return false;
}
function tt_MkMainDiv(){
if(tt_body.insertAdjacentHTML){
tt_body.insertAdjacentHTML("afterBegin",tt_MkMainDivHtm());
}else{
if(typeof tt_body.innerHTML!=tt_u&&document.createElement&&tt_body.appendChild){
tt_body.appendChild(tt_MkMainDivDom());
}
}
if(window.tt_GetMainDivRefs&&tt_GetMainDivRefs()){
return true;
}
tt_db=null;
return false;
}
function tt_MkMainDivHtm(){
return ("<div id=\"WzTtDiV\"></div>"+(tt_ie56?("<iframe id=\"WzTtIfRm\" src=\"javascript:false\" scrolling=\"no\" frameborder=\"0\" style=\"filter:Alpha(opacity=0);position:absolute;top:0px;left:0px;display:none;\"></iframe>"):""));
}
function tt_MkMainDivDom(){
var el=document.createElement("div");
if(el){
el.id="WzTtDiV";
}
return el;
}
function tt_GetMainDivRefs(){
tt_aElt[0]=tt_GetElt("WzTtDiV");
if(tt_ie56&&tt_aElt[0]){
tt_aElt[tt_aElt.length-1]=tt_GetElt("WzTtIfRm");
if(!tt_aElt[tt_aElt.length-1]){
tt_aElt[0]=null;
}
}
if(tt_aElt[0]){
var css=tt_aElt[0].style;
css.visibility="hidden";
css.position="absolute";
css.overflow="hidden";
return true;
}
return false;
}
function tt_ResetMainDiv(){
var w=(window.screen&&screen.width)?screen.width:10000;
tt_SetTipPos(-w,0);
tt_aElt[0].innerHTML="";
tt_aElt[0].style.width=(w-1)+"px";
}
function tt_IsW3cBox(){
var css=tt_aElt[0].style;
css.padding="10px";
css.width="40px";
tt_bBoxOld=(tt_GetDivW(tt_aElt[0])==40);
css.padding="0px";
tt_ResetMainDiv();
}
function tt_OpaSupport(){
var css=tt_body.style;
tt_flagOpa=(typeof (css.filter)!=tt_u)?1:(typeof (css.KhtmlOpacity)!=tt_u)?2:(typeof (css.KHTMLOpacity)!=tt_u)?3:(typeof (css.MozOpacity)!=tt_u)?4:(typeof (css.opacity)!=tt_u)?5:0;
}
function tt_SetOnloadFnc(){
tt_AddEvtFnc(document,"DOMContentLoaded",tt_HideSrcTags);
tt_AddEvtFnc(window,"load",tt_HideSrcTags);
if(tt_body.attachEvent){
tt_body.attachEvent("onreadystatechange",function(){
if(tt_body.readyState=="complete"){
tt_HideSrcTags();
}
});
}
if(/WebKit|KHTML/i.test(navigator.userAgent)){
var t=setInterval(function(){
if(/loaded|complete/.test(document.readyState)){
clearInterval(t);
tt_HideSrcTags();
}
},10);
}
}
function tt_HideSrcTags(){
if(!window.tt_HideSrcTags||window.tt_HideSrcTags.done){
return;
}
window.tt_HideSrcTags.done=true;
if(!tt_HideSrcTagsRecurs(tt_body)){
tt_Err("To enable the capability to convert HTML elements to tooltips,"+" you must set TagsToTip in the global tooltip configuration"+" to true.");
}
}
function tt_HideSrcTagsRecurs(dad){
var a,ovr,_3e;
a=dad.childNodes||dad.children||null;
for(var i=a?a.length:0;i;){
--i;
if(!tt_HideSrcTagsRecurs(a[i])){
return false;
}
ovr=a[i].getAttribute?a[i].getAttribute("onmouseover"):(typeof a[i].onmouseover=="function")?a[i].onmouseover:null;
if(ovr){
_3e=ovr.toString().match(/TagToTip\s*\(\s*'[^'.]+'\s*[\),]/);
if(_3e&&_3e.length){
if(!tt_HideSrcTag(_3e[0])){
return false;
}
}
}
}
return true;
}
function tt_HideSrcTag(_40){
var id,el;
id=_40.replace(/.+'([^'.]+)'.+/,"$1");
el=tt_GetElt(id);
if(el){
if(tt_Debug&&!TagsToTip){
return false;
}else{
el.style.display="none";
}
}else{
tt_Err("Invalid ID\n'"+id+"'\npassed to TagToTip()."+" There exists no HTML element with that ID.");
}
return true;
}
function tt_Tip(arg,t2t){
if(!tt_db){
return;
}
if(tt_iState){
tt_Hide();
}
if(!tt_Enabled){
return;
}
tt_t2t=t2t;
if(!tt_ReadCmds(arg)){
return;
}
tt_iState=1|4;
tt_AdaptConfig1();
tt_MkTipContent(arg);
tt_MkTipSubDivs();
tt_FormatTip();
tt_bJmpVert=false;
tt_maxPosX=tt_GetClientW()+tt_scrlX-tt_w-1;
tt_maxPosY=tt_GetClientH()+tt_scrlY-tt_h-1;
tt_AdaptConfig2();
tt_Move();
tt_ShowInit();
}
function tt_ReadCmds(a){
var i;
i=0;
for(var j in config){
tt_aV[i++]=config[j];
}
if(a.length&1){
for(i=a.length-1;i>0;i-=2){
tt_aV[a[i-1]]=a[i];
}
return true;
}
tt_Err("Incorrect call of Tip() or TagToTip().\n"+"Each command must be followed by a value.");
return false;
}
function tt_AdaptConfig1(){
tt_ExtCallFncs(0,"LoadConfig");
if(!tt_aV[TITLEBGCOLOR].length){
tt_aV[TITLEBGCOLOR]=tt_aV[BORDERCOLOR];
}
if(!tt_aV[TITLEFONTCOLOR].length){
tt_aV[TITLEFONTCOLOR]=tt_aV[BGCOLOR];
}
if(!tt_aV[TITLEFONTFACE].length){
tt_aV[TITLEFONTFACE]=tt_aV[FONTFACE];
}
if(!tt_aV[TITLEFONTSIZE].length){
tt_aV[TITLEFONTSIZE]=tt_aV[FONTSIZE];
}
if(tt_aV[CLOSEBTN]){
if(!tt_aV[CLOSEBTNCOLORS]){
tt_aV[CLOSEBTNCOLORS]=new Array("","","","");
}
for(var i=4;i;){
--i;
if(!tt_aV[CLOSEBTNCOLORS][i].length){
tt_aV[CLOSEBTNCOLORS][i]=(i&1)?tt_aV[TITLEFONTCOLOR]:tt_aV[TITLEBGCOLOR];
}
}
if(!tt_aV[TITLE].length){
tt_aV[TITLE]=" ";
}
}
if(tt_aV[OPACITY]==100&&typeof tt_aElt[0].style.MozOpacity!=tt_u&&!Array.every){
tt_aV[OPACITY]=99;
}
if(tt_aV[FADEIN]&&tt_flagOpa&&tt_aV[DELAY]>100){
tt_aV[DELAY]=Math.max(tt_aV[DELAY]-tt_aV[FADEIN],100);
}
}
function tt_AdaptConfig2(){
if(tt_aV[CENTERMOUSE]){
tt_aV[OFFSETX]-=((tt_w-(tt_aV[SHADOW]?tt_aV[SHADOWWIDTH]:0))>>1);
}
}
function tt_MkTipContent(a){
if(tt_t2t){
if(tt_aV[COPYCONTENT]){
tt_sContent=tt_t2t.innerHTML;
}else{
tt_sContent="";
}
}else{
tt_sContent=a[0];
}
tt_ExtCallFncs(0,"CreateContentString");
}
function tt_MkTipSubDivs(){
var _4a="position:relative;margin:0px;padding:0px;border-width:0px;left:0px;top:0px;line-height:normal;width:auto;",_4b=" cellspacing=0 cellpadding=0 border=0 style=\""+_4a+"\"><tbody style=\""+_4a+"\"><tr><td ";
tt_aElt[0].innerHTML=(""+(tt_aV[TITLE].length?("<div id=\"WzTiTl\" style=\"position:relative;z-index:1;\">"+"<table id=\"WzTiTlTb\""+_4b+"id=\"WzTiTlI\" style=\""+_4a+"\">"+tt_aV[TITLE]+"</td>"+(tt_aV[CLOSEBTN]?("<td align=\"right\" style=\""+_4a+"text-align:right;\">"+"<span id=\"WzClOsE\" style=\"padding-left:2px;padding-right:2px;"+"cursor:"+(tt_ie?"hand":"pointer")+";\" onmouseover=\"tt_OnCloseBtnOver(1)\" onmouseout=\"tt_OnCloseBtnOver(0)\" onclick=\"tt_HideInit()\">"+tt_aV[CLOSEBTNTEXT]+"</span></td>"):"")+"</tr></tbody></table></div>"):"")+"<div id=\"WzBoDy\" style=\"position:relative;z-index:0;\">"+"<table"+_4b+"id=\"WzBoDyI\" style=\""+_4a+"\">"+tt_sContent+"</td></tr></tbody></table></div>"+(tt_aV[SHADOW]?("<div id=\"WzTtShDwR\" style=\"position:absolute;overflow:hidden;\"></div>"+"<div id=\"WzTtShDwB\" style=\"position:relative;overflow:hidden;\"></div>"):""));
tt_GetSubDivRefs();
if(tt_t2t&&!tt_aV[COPYCONTENT]){
tt_t2tDad=tt_t2t.parentNode||tt_t2t.parentElement||tt_t2t.offsetParent||null;
if(tt_t2tDad){
tt_MovDomNode(tt_t2t,tt_t2tDad,tt_aElt[6]);
tt_t2t.style.display="block";
}
}
tt_ExtCallFncs(0,"SubDivsCreated");
}
function tt_GetSubDivRefs(){
var aId=new Array("WzTiTl","WzTiTlTb","WzTiTlI","WzClOsE","WzBoDy","WzBoDyI","WzTtShDwB","WzTtShDwR");
for(var i=aId.length;i;--i){
tt_aElt[i]=tt_GetElt(aId[i-1]);
}
}
function tt_FormatTip(){
var css,w,_50,_51;
if(tt_aV[TITLE].length){
css=tt_aElt[1].style;
css.background=tt_aV[TITLEBGCOLOR];
css.paddingTop=(tt_aV[CLOSEBTN]?2:0)+"px";
css.paddingBottom="1px";
css.paddingLeft=css.paddingRight=tt_aV[PADDING]+"px";
css=tt_aElt[3].style;
css.color=tt_aV[TITLEFONTCOLOR];
css.fontFamily=tt_aV[TITLEFONTFACE];
css.fontSize=tt_aV[TITLEFONTSIZE];
css.fontWeight="bold";
css.textAlign=tt_aV[TITLEALIGN];
if(tt_aElt[4]){
css.paddingRight=(tt_aV[PADDING]<<1)+"px";
css=tt_aElt[4].style;
css.background=tt_aV[CLOSEBTNCOLORS][0];
css.color=tt_aV[CLOSEBTNCOLORS][1];
css.fontFamily=tt_aV[TITLEFONTFACE];
css.fontSize=tt_aV[TITLEFONTSIZE];
css.fontWeight="bold";
}
if(tt_aV[WIDTH]>0){
tt_w=tt_aV[WIDTH]+((tt_aV[PADDING]+tt_aV[BORDERWIDTH])<<1);
}else{
tt_w=tt_GetDivW(tt_aElt[3])+tt_GetDivW(tt_aElt[4]);
if(tt_aElt[4]){
tt_w+=tt_aV[PADDING];
}
}
_50=-tt_aV[BORDERWIDTH];
}else{
tt_w=0;
_50=0;
}
css=tt_aElt[5].style;
css.top=_50+"px";
if(tt_aV[BORDERWIDTH]){
css.borderColor=tt_aV[BORDERCOLOR];
css.borderStyle=tt_aV[BORDERSTYLE];
css.borderWidth=tt_aV[BORDERWIDTH]+"px";
}
if(tt_aV[BGCOLOR].length){
css.background=tt_aV[BGCOLOR];
}
if(tt_aV[BGIMG].length){
css.backgroundImage="url("+tt_aV[BGIMG]+")";
}
css.padding=tt_aV[PADDING]+"px";
css.textAlign=tt_aV[TEXTALIGN];
css=tt_aElt[6].style;
css.color=tt_aV[FONTCOLOR];
css.fontFamily=tt_aV[FONTFACE];
css.fontSize=tt_aV[FONTSIZE];
css.fontWeight=tt_aV[FONTWEIGHT];
css.background="";
css.textAlign=tt_aV[TEXTALIGN];
if(tt_aV[WIDTH]>0){
w=tt_aV[WIDTH]+((tt_aV[PADDING]+tt_aV[BORDERWIDTH])<<1);
}else{
w=tt_GetDivW(tt_aElt[6])+((tt_aV[PADDING]+tt_aV[BORDERWIDTH])<<1);
}
if(w>tt_w){
tt_w=w;
}
if(tt_aV[SHADOW]){
tt_w+=tt_aV[SHADOWWIDTH];
_51=Math.floor((tt_aV[SHADOWWIDTH]*4)/3);
css=tt_aElt[7].style;
css.top=_50+"px";
css.left=_51+"px";
css.width=(tt_w-_51-tt_aV[SHADOWWIDTH])+"px";
css.height=tt_aV[SHADOWWIDTH]+"px";
css.background=tt_aV[SHADOWCOLOR];
css=tt_aElt[8].style;
css.top=_51+"px";
css.left=(tt_w-tt_aV[SHADOWWIDTH])+"px";
css.width=tt_aV[SHADOWWIDTH]+"px";
css.background=tt_aV[SHADOWCOLOR];
}else{
_51=0;
}
tt_SetTipOpa(tt_aV[FADEIN]?0:tt_aV[OPACITY]);
tt_FixSize(_50,_51);
}
function tt_FixSize(_52,_53){
var wIn,_55,i;
tt_aElt[0].style.width=tt_w+"px";
tt_aElt[0].style.pixelWidth=tt_w;
_55=tt_w-((tt_aV[SHADOW])?tt_aV[SHADOWWIDTH]:0);
wIn=_55;
if(!tt_bBoxOld){
wIn-=((tt_aV[PADDING]+tt_aV[BORDERWIDTH])<<1);
}
tt_aElt[5].style.width=wIn+"px";
if(tt_aElt[1]){
wIn=_55-(tt_aV[PADDING]<<1);
if(!tt_bBoxOld){
_55=wIn;
}
tt_aElt[1].style.width=_55+"px";
tt_aElt[2].style.width=wIn+"px";
}
tt_h=tt_GetDivH(tt_aElt[0])+_52;
if(tt_aElt[8]){
tt_aElt[8].style.height=(tt_h-_53)+"px";
}
i=tt_aElt.length-1;
if(tt_aElt[i]){
tt_aElt[i].style.width=tt_w+"px";
tt_aElt[i].style.height=tt_h+"px";
}
}
function tt_DeAlt(el){
var _58;
if(el.alt){
el.alt="";
}
if(el.title){
el.title="";
}
_58=el.childNodes||el.children||null;
if(_58){
for(var i=_58.length;i;){
tt_DeAlt(_58[--i]);
}
}
}
function tt_OpDeHref(el){
if(!tt_op){
return;
}
if(tt_elDeHref){
tt_OpReHref();
}
while(el){
if(el.hasAttribute("href")){
el.t_href=el.getAttribute("href");
el.t_stats=window.status;
el.removeAttribute("href");
el.style.cursor="hand";
tt_AddEvtFnc(el,"mousedown",tt_OpReHref);
window.status=el.t_href;
tt_elDeHref=el;
break;
}
el=el.parentElement;
}
}
function tt_ShowInit(){
tt_tShow.Timer("tt_Show()",tt_aV[DELAY],true);
if(tt_aV[CLICKCLOSE]){
tt_AddEvtFnc(document,"mouseup",tt_HideInit);
}
}
function tt_OverInit(e){
tt_over=e.target||e.srcElement;
tt_DeAlt(tt_over);
tt_OpDeHref(tt_over);
tt_AddRemOutFnc(true);
}
function tt_Show(){
var css=tt_aElt[0].style;
css.zIndex=Math.max((window.dd&&dd.z)?(dd.z+2):0,1010);
if(tt_aV[STICKY]||!tt_aV[FOLLOWMOUSE]){
tt_iState&=~4;
}
if(tt_aV[DURATION]>0){
tt_tDurt.Timer("tt_HideInit()",tt_aV[DURATION],true);
}
tt_ExtCallFncs(0,"Show");
css.visibility="visible";
tt_iState|=2;
if(tt_aV[FADEIN]){
tt_Fade(0,0,tt_aV[OPACITY],Math.round(tt_aV[FADEIN]/tt_aV[FADEINTERVAL]));
}
tt_ShowIfrm();
}
function tt_ShowIfrm(){
if(tt_ie56){
var _5d=tt_aElt[tt_aElt.length-1];
if(_5d){
var css=_5d.style;
css.zIndex=tt_aElt[0].style.zIndex-1;
css.display="block";
}
}
}
function tt_Move(e){
e=window.event||e;
if(e){
tt_musX=tt_GetEvtX(e);
tt_musY=tt_GetEvtY(e);
}
if(tt_iState){
if(!tt_over&&e){
tt_OverInit(e);
}
if(tt_iState&4){
if(!tt_op&&!tt_ie){
if(tt_bWait){
return;
}
tt_bWait=true;
tt_tWaitMov.Timer("tt_bWait = false;",1,true);
}
if(tt_aV[FIX]){
tt_iState&=~4;
tt_SetTipPos(tt_aV[FIX][0],tt_aV[FIX][1]);
}else{
if(!tt_ExtCallFncs(e,"MoveBefore")){
tt_SetTipPos(tt_PosX(),tt_PosY());
}
}
tt_ExtCallFncs([tt_musX,tt_musY],"MoveAfter");
}
}
}
function tt_PosX(){
var x;
x=tt_musX;
if(tt_aV[LEFT]){
x-=tt_w+tt_aV[OFFSETX]-(tt_aV[SHADOW]?tt_aV[SHADOWWIDTH]:0);
}else{
x+=tt_aV[OFFSETX];
}
if(x>tt_maxPosX){
x=tt_maxPosX;
}
return ((x<tt_scrlX)?tt_scrlX:x);
}
function tt_PosY(){
var y;
if(tt_aV[ABOVE]&&(!tt_bJmpVert||tt_CalcPosYAbove()>=tt_scrlY+16)){
y=tt_DoPosYAbove();
}else{
if(!tt_aV[ABOVE]&&tt_bJmpVert&&tt_CalcPosYBelow()>tt_maxPosY-16){
y=tt_DoPosYAbove();
}else{
y=tt_DoPosYBelow();
}
}
if(y>tt_maxPosY){
y=tt_DoPosYAbove();
}
if(y<tt_scrlY){
y=tt_DoPosYBelow();
}
return y;
}
function tt_DoPosYBelow(){
tt_bJmpVert=tt_aV[ABOVE];
return tt_CalcPosYBelow();
}
function tt_DoPosYAbove(){
tt_bJmpVert=!tt_aV[ABOVE];
return tt_CalcPosYAbove();
}
function tt_CalcPosYBelow(){
return (tt_musY+tt_aV[OFFSETY]);
}
function tt_CalcPosYAbove(){
var dy=tt_aV[OFFSETY]-(tt_aV[SHADOW]?tt_aV[SHADOWWIDTH]:0);
if(tt_aV[OFFSETY]>0&&dy<=0){
dy=1;
}
return (tt_musY-tt_h-dy);
}
function tt_OnOut(){
tt_AddRemOutFnc(false);
if(!(tt_aV[STICKY]&&(tt_iState&2))){
tt_HideInit();
}
}
function tt_HideInit(){
tt_ExtCallFncs(0,"HideInit");
tt_iState&=~4;
if(tt_flagOpa&&tt_aV[FADEOUT]){
tt_tFade.EndTimer();
if(tt_opa){
var n=Math.round(tt_aV[FADEOUT]/(tt_aV[FADEINTERVAL]*(tt_aV[OPACITY]/tt_opa)));
tt_Fade(tt_opa,tt_opa,0,n);
return;
}
}
tt_tHide.Timer("tt_Hide();",1,false);
}
function tt_OpReHref(){
if(tt_elDeHref){
tt_elDeHref.setAttribute("href",tt_elDeHref.t_href);
tt_RemEvtFnc(tt_elDeHref,"mousedown",tt_OpReHref);
window.status=tt_elDeHref.t_stats;
tt_elDeHref=null;
}
}
function tt_Fade(a,now,z,n){
if(n){
now+=Math.round((z-now)/n);
if((z>a)?(now>=z):(now<=z)){
now=z;
}else{
tt_tFade.Timer("tt_Fade("+a+","+now+","+z+","+(n-1)+")",tt_aV[FADEINTERVAL],true);
}
}
now?tt_SetTipOpa(now):tt_Hide();
}
function tt_SetTipOpa(opa){
tt_SetOpa(tt_aElt[5].style,opa);
if(tt_aElt[1]){
tt_SetOpa(tt_aElt[1].style,opa);
}
if(tt_aV[SHADOW]){
opa=Math.round(opa*0.8);
tt_SetOpa(tt_aElt[7].style,opa);
tt_SetOpa(tt_aElt[8].style,opa);
}
}
function tt_OnCloseBtnOver(_69){
var css=tt_aElt[4].style;
_69<<=1;
css.background=tt_aV[CLOSEBTNCOLORS][_69];
css.color=tt_aV[CLOSEBTNCOLORS][_69+1];
}
function tt_Int(x){
var y;
return (isNaN(y=parseInt(x))?0:y);
}
function tt_AddRemOutFnc(_6d){
var _6e=_6d?tt_AddEvtFnc:tt_RemEvtFnc;
if(_6d!=tt_AddRemOutFnc.bOn){
_6e(tt_over,"mouseout",tt_OnOut);
tt_AddRemOutFnc.bOn=_6d;
if(!_6d){
tt_OpReHref();
}
}
}
tt_AddRemOutFnc.bOn=false;
Number.prototype.Timer=function(s,iT,_71){
if(!this.value||_71){
this.value=window.setTimeout(s,iT);
}
};
Number.prototype.EndTimer=function(){
if(this.value){
window.clearTimeout(this.value);
this.value=0;
}
};
function tt_SetOpa(css,opa){
tt_opa=opa;
if(tt_flagOpa==1){
if(opa<100){
var _74=css.visibility!="hidden";
css.zoom="100%";
if(!_74){
css.visibility="visible";
}
css.filter="alpha(opacity="+opa+")";
if(!_74){
css.visibility="hidden";
}
}else{
css.filter="";
}
}else{
opa/=100;
switch(tt_flagOpa){
case 2:
css.KhtmlOpacity=opa;
break;
case 3:
css.KHTMLOpacity=opa;
break;
case 4:
css.MozOpacity=opa;
break;
case 5:
css.opacity=opa;
break;
}
}
}
function tt_MovDomNode(el,_76,_77){
if(_76){
_76.removeChild(el);
}
if(_77){
_77.appendChild(el);
}
}
function tt_Err(_78){
if(tt_Debug){
alert("Tooltip Script Error Message:\n\n"+_78);
}
}
function tt_ExtCmdEnum(){
var s;
for(var i in config){
s="window."+i.toString().toUpperCase();
if(eval("typeof("+s+") == tt_u")){
eval(s+" = "+tt_aV.length);
tt_aV[tt_aV.length]=null;
}
}
}
function tt_ExtCallFncs(arg,_7c){
var b=false;
for(var i=tt_aExt.length;i;){
--i;
var fnc=tt_aExt[i]["On"+_7c];
if(fnc&&fnc(arg)){
b=true;
}
}
return b;
}
var isIE=navigator.userAgent.toLowerCase().indexOf("msie")>-1;
var isMoz=document.implementation&&document.implementation.createDocument;
var isSafari=((navigator.userAgent.toLowerCase().indexOf("safari")!=-1)&&(navigator.userAgent.toLowerCase().indexOf("mac")!=-1))?true:false;
function curvyCorners(){
if(typeof (arguments[0])!="object"){
throw newCurvyError("First parameter of curvyCorners() must be an object.");
}
if(typeof (arguments[1])!="object"&&typeof (arguments[1])!="string"){
throw newCurvyError("Second parameter of curvyCorners() must be an object or a class name.");
}
if(typeof (arguments[1])=="string"){
var _80=0;
var _81=getElementsByClass(arguments[1]);
}else{
var _80=1;
var _81=arguments;
}
var _82=new Array();
if(arguments[0].validTags){
var _83=arguments[0].validTags;
}else{
var _83=["div"];
}
for(var i=_80,j=_81.length;i<j;i++){
var _86=_81[i].tagName.toLowerCase();
if(inArray(_83,_86)!==false){
_82[_82.length]=new curvyObject(arguments[0],_81[i]);
}
}
this.objects=_82;
this.applyCornersToAll=function(){
for(var x=0,k=this.objects.length;x<k;x++){
this.objects[x].applyCorners();
}
};
}
function curvyObject(){
this.box=arguments[1];
this.settings=arguments[0];
this.topContainer=null;
this.bottomContainer=null;
this.masterCorners=new Array();
this.contentDIV=null;
var _89=get_style(this.box,"height","height");
var _8a=get_style(this.box,"width","width");
var _8b=get_style(this.box,"borderTopWidth","border-top-width");
var _8c=get_style(this.box,"borderTopColor","border-top-color");
var _8d=get_style(this.box,"backgroundColor","background-color");
var _8e=get_style(this.box,"backgroundImage","background-image");
var _8f=get_style(this.box,"position","position");
var _90=get_style(this.box,"paddingTop","padding-top");
this.boxHeight=parseInt(((_89!=""&&_89!="auto"&&_89.indexOf("%")==-1)?_89.substring(0,_89.indexOf("px")):this.box.scrollHeight));
this.boxWidth=parseInt(((_8a!=""&&_8a!="auto"&&_8a.indexOf("%")==-1)?_8a.substring(0,_8a.indexOf("px")):this.box.scrollWidth));
this.borderWidth=parseInt(((_8b!=""&&_8b.indexOf("px")!==-1)?_8b.slice(0,_8b.indexOf("px")):0));
this.boxColour=format_colour(_8d);
this.boxPadding=parseInt(((_90!=""&&_90.indexOf("px")!==-1)?_90.slice(0,_90.indexOf("px")):0));
this.borderColour=format_colour(_8c);
this.borderString=this.borderWidth+"px"+" solid "+this.borderColour;
this.backgroundImage=((_8e!="none")?_8e:"");
this.boxContent=this.box.innerHTML;
if(_8f!="absolute"){
this.box.style.position="relative";
}
this.box.style.padding="0px";
if(isIE&&_8a=="auto"&&_89=="auto"){
this.box.style.height="1%";
}
if(this.settings.autoPad==true&&this.boxPadding>0){
this.box.innerHTML="";
this.box.style.marginTop=(parseInt(get_style(this.box,"marginTop","margin-top"))+10)+"px";
this.box.style.marginBottom=(parseInt(get_style(this.box,"marginBottom","margin-bottom"))+10)+"px";
}
this.applyCorners=function(){
for(var t=0;t<2;t++){
switch(t){
case 0:
if(this.settings.tl||this.settings.tr){
var _92=document.createElement("DIV");
_92.style.width="100%";
_92.style.fontSize="1px";
_92.style.overflow="hidden";
_92.style.position="absolute";
_92.style.paddingLeft=this.borderWidth+"px";
_92.style.paddingRight=this.borderWidth+"px";
var _93=Math.max(this.settings.tl?this.settings.tl.radius:0,this.settings.tr?this.settings.tr.radius:0);
_92.style.height=_93+"px";
_92.style.top=0-_93+"px";
_92.style.left=0-this.borderWidth+"px";
this.topContainer=this.box.appendChild(_92);
}
break;
case 1:
if(this.settings.bl||this.settings.br){
var _92=document.createElement("DIV");
_92.style.width="100%";
_92.style.fontSize="1px";
_92.style.overflow="hidden";
_92.style.position="absolute";
_92.style.paddingLeft=this.borderWidth+"px";
_92.style.paddingRight=this.borderWidth+"px";
var _94=Math.max(this.settings.bl?this.settings.bl.radius:0,this.settings.br?this.settings.br.radius:0);
_92.style.height=_94+"px";
_92.style.bottom=0-_94+"px";
_92.style.left=0-this.borderWidth+"px";
this.bottomContainer=this.box.appendChild(_92);
}
break;
}
}
if(this.topContainer){
this.box.style.borderTopWidth="0px";
}
if(this.bottomContainer){
this.box.style.borderBottomWidth="0px";
}
var _95=["tr","tl","br","bl"];
for(var i in _95){
if(i>-1<4){
var cc=_95[i];
if(!this.settings[cc]){
if(((cc=="tr"||cc=="tl")&&this.topContainer!=null)||((cc=="br"||cc=="bl")&&this.bottomContainer!=null)){
var _98=document.createElement("DIV");
_98.style.position="relative";
_98.style.fontSize="1px";
_98.style.overflow="hidden";
if(this.backgroundImage==""){
_98.style.backgroundColor=this.boxColour;
}else{
_98.style.backgroundImage=this.backgroundImage;
}
switch(cc){
case "tl":
_98.style.height=_93-this.borderWidth+"px";
_98.style.marginRight=this.settings.tr.radius-(this.borderWidth*2)+"px";
_98.style.borderLeft=this.borderString;
_98.style.borderTop=this.borderString;
_98.style.left=-this.borderWidth+"px";
break;
case "tr":
_98.style.height=_93-this.borderWidth+"px";
_98.style.marginLeft=this.settings.tl.radius-(this.borderWidth*2)+"px";
_98.style.borderRight=this.borderString;
_98.style.borderTop=this.borderString;
_98.style.backgroundPosition="-"+(_93+this.borderWidth)+"px 0px";
_98.style.left=this.borderWidth+"px";
break;
case "bl":
_98.style.height=_94-this.borderWidth+"px";
_98.style.marginRight=this.settings.br.radius-(this.borderWidth*2)+"px";
_98.style.borderLeft=this.borderString;
_98.style.borderBottom=this.borderString;
_98.style.left=-this.borderWidth+"px";
_98.style.backgroundPosition="-"+(this.borderWidth)+"px -"+(this.boxHeight+(_94+this.borderWidth))+"px";
break;
case "br":
_98.style.height=_94-this.borderWidth+"px";
_98.style.marginLeft=this.settings.bl.radius-(this.borderWidth*2)+"px";
_98.style.borderRight=this.borderString;
_98.style.borderBottom=this.borderString;
_98.style.left=this.borderWidth+"px";
_98.style.backgroundPosition="-"+(_94+this.borderWidth)+"px -"+(this.boxHeight+(_94+this.borderWidth))+"px";
break;
}
}
}else{
if(this.masterCorners[this.settings[cc].radius]){
var _98=this.masterCorners[this.settings[cc].radius].cloneNode(true);
}else{
var _98=document.createElement("DIV");
_98.style.height=this.settings[cc].radius+"px";
_98.style.width=this.settings[cc].radius+"px";
_98.style.position="absolute";
_98.style.fontSize="1px";
_98.style.overflow="hidden";
var _99=parseInt(this.settings[cc].radius-this.borderWidth);
for(var _9a=0,j=this.settings[cc].radius;_9a<j;_9a++){
if((_9a+1)>=_99){
var y1=-1;
}else{
var y1=(Math.floor(Math.sqrt(Math.pow(_99,2)-Math.pow((_9a+1),2)))-1);
}
if(_99!=j){
if((_9a)>=_99){
var y2=-1;
}else{
var y2=Math.ceil(Math.sqrt(Math.pow(_99,2)-Math.pow(_9a,2)));
}
if((_9a+1)>=j){
var y3=-1;
}else{
var y3=(Math.floor(Math.sqrt(Math.pow(j,2)-Math.pow((_9a+1),2)))-1);
}
}
if((_9a)>=j){
var y4=-1;
}else{
var y4=Math.ceil(Math.sqrt(Math.pow(j,2)-Math.pow(_9a,2)));
}
if(y1>-1){
this.drawPixel(_9a,0,this.boxColour,100,(y1+1),_98,-1,this.settings[cc].radius);
}
if(_99!=j){
for(var _a0=(y1+1);_a0<y2;_a0++){
if(this.settings.antiAlias){
if(this.backgroundImage!=""){
var _a1=(pixelFraction(_9a,_a0,_99)*100);
if(_a1<30){
this.drawPixel(_9a,_a0,this.borderColour,100,1,_98,0,this.settings[cc].radius);
}else{
this.drawPixel(_9a,_a0,this.borderColour,100,1,_98,-1,this.settings[cc].radius);
}
}else{
var _a2=BlendColour(this.boxColour,this.borderColour,pixelFraction(_9a,_a0,_99));
this.drawPixel(_9a,_a0,_a2,100,1,_98,0,this.settings[cc].radius,cc);
}
}
}
if(this.settings.antiAlias){
if(y3>=y2){
if(y2==-1){
y2=0;
}
this.drawPixel(_9a,y2,this.borderColour,100,(y3-y2+1),_98,0,0);
}
}else{
if(y3>=y1){
this.drawPixel(_9a,(y1+1),this.borderColour,100,(y3-y1),_98,0,0);
}
}
var _a3=this.borderColour;
}else{
var _a3=this.boxColour;
var y3=y1;
}
if(this.settings.antiAlias){
for(var _a0=(y3+1);_a0<y4;_a0++){
this.drawPixel(_9a,_a0,_a3,(pixelFraction(_9a,_a0,j)*100),1,_98,((this.borderWidth>0)?0:-1),this.settings[cc].radius);
}
}
}
this.masterCorners[this.settings[cc].radius]=_98.cloneNode(true);
}
if(cc!="br"){
for(var t=0,k=_98.childNodes.length;t<k;t++){
var _a5=_98.childNodes[t];
var _a6=parseInt(_a5.style.top.substring(0,_a5.style.top.indexOf("px")));
var _a7=parseInt(_a5.style.left.substring(0,_a5.style.left.indexOf("px")));
var _a8=parseInt(_a5.style.height.substring(0,_a5.style.height.indexOf("px")));
if(cc=="tl"||cc=="bl"){
_a5.style.left=this.settings[cc].radius-_a7-1+"px";
}
if(cc=="tr"||cc=="tl"){
_a5.style.top=this.settings[cc].radius-_a8-_a6+"px";
}
switch(cc){
case "tr":
_a5.style.backgroundPosition="-"+Math.abs((this.boxWidth-this.settings[cc].radius+this.borderWidth)+_a7)+"px -"+Math.abs(this.settings[cc].radius-_a8-_a6-this.borderWidth)+"px";
break;
case "tl":
_a5.style.backgroundPosition="-"+Math.abs((this.settings[cc].radius-_a7-1)-this.borderWidth)+"px -"+Math.abs(this.settings[cc].radius-_a8-_a6-this.borderWidth)+"px";
break;
case "bl":
_a5.style.backgroundPosition="-"+Math.abs((this.settings[cc].radius-_a7-1)-this.borderWidth)+"px -"+Math.abs((this.boxHeight+this.settings[cc].radius+_a6)-this.borderWidth)+"px";
break;
}
}
}
}
if(_98){
switch(cc){
case "tl":
if(_98.style.position=="absolute"){
_98.style.top="0px";
}
if(_98.style.position=="absolute"){
_98.style.left="0px";
}
if(this.topContainer){
this.topContainer.appendChild(_98);
}
break;
case "tr":
if(_98.style.position=="absolute"){
_98.style.top="0px";
}
if(_98.style.position=="absolute"){
_98.style.right="0px";
}
if(this.topContainer){
this.topContainer.appendChild(_98);
}
break;
case "bl":
if(_98.style.position=="absolute"){
_98.style.bottom="0px";
}
if(_98.style.position=="absolute"){
_98.style.left="0px";
}
if(this.bottomContainer){
this.bottomContainer.appendChild(_98);
}
break;
case "br":
if(_98.style.position=="absolute"){
_98.style.bottom="0px";
}
if(_98.style.position=="absolute"){
_98.style.right="0px";
}
if(this.bottomContainer){
this.bottomContainer.appendChild(_98);
}
break;
}
}
}
}
var _a9=new Array();
_a9["t"]=Math.abs(this.settings.tl.radius-this.settings.tr.radius);
_a9["b"]=Math.abs(this.settings.bl.radius-this.settings.br.radius);
for(z in _a9){
if(z=="t"||z=="b"){
if(_a9[z]){
var _aa=((this.settings[z+"l"].radius<this.settings[z+"r"].radius)?z+"l":z+"r");
var _ab=document.createElement("DIV");
_ab.style.height=_a9[z]+"px";
_ab.style.width=this.settings[_aa].radius+"px";
_ab.style.position="absolute";
_ab.style.fontSize="1px";
_ab.style.overflow="hidden";
_ab.style.backgroundColor=this.boxColour;
switch(_aa){
case "tl":
_ab.style.bottom="0px";
_ab.style.left="0px";
_ab.style.borderLeft=this.borderString;
this.topContainer.appendChild(_ab);
break;
case "tr":
_ab.style.bottom="0px";
_ab.style.right="0px";
_ab.style.borderRight=this.borderString;
this.topContainer.appendChild(_ab);
break;
case "bl":
_ab.style.top="0px";
_ab.style.left="0px";
_ab.style.borderLeft=this.borderString;
this.bottomContainer.appendChild(_ab);
break;
case "br":
_ab.style.top="0px";
_ab.style.right="0px";
_ab.style.borderRight=this.borderString;
this.bottomContainer.appendChild(_ab);
break;
}
}
var _ac=document.createElement("DIV");
_ac.style.position="relative";
_ac.style.fontSize="1px";
_ac.style.overflow="hidden";
_ac.style.backgroundColor=this.boxColour;
_ac.style.backgroundImage=this.backgroundImage;
switch(z){
case "t":
if(this.topContainer){
if(this.settings.tl.radius&&this.settings.tr.radius){
_ac.style.height=_93-this.borderWidth+"px";
_ac.style.marginLeft=this.settings.tl.radius-this.borderWidth+"px";
_ac.style.marginRight=this.settings.tr.radius-this.borderWidth+"px";
_ac.style.borderTop=this.borderString;
if(this.backgroundImage!=""){
_ac.style.backgroundPosition="-"+(_93+this.borderWidth)+"px 0px";
}
this.topContainer.appendChild(_ac);
}
this.box.style.backgroundPosition="0px -"+(_93-this.borderWidth)+"px";
}
break;
case "b":
if(this.bottomContainer){
if(this.settings.bl.radius&&this.settings.br.radius){
_ac.style.height=_94-this.borderWidth+"px";
_ac.style.marginLeft=this.settings.bl.radius-this.borderWidth+"px";
_ac.style.marginRight=this.settings.br.radius-this.borderWidth+"px";
_ac.style.borderBottom=this.borderString;
if(this.backgroundImage!=""){
_ac.style.backgroundPosition="-"+(_94+this.borderWidth)+"px -"+(this.boxHeight+(_93+this.borderWidth))+"px";
}
this.bottomContainer.appendChild(_ac);
}
}
break;
}
}
}
if(this.settings.autoPad==true&&this.boxPadding>0){
var _ad=document.createElement("DIV");
_ad.style.position="relative";
_ad.innerHTML=this.boxContent;
_ad.className="autoPadDiv";
var _ae=Math.abs(_93-this.boxPadding);
var _af=Math.abs(_94-this.boxPadding);
if(_93<this.boxPadding){
_ad.style.paddingTop=_ae+"px";
}
if(_94<this.boxPadding){
_ad.style.paddingBottom=_94+"px";
}
_ad.style.paddingLeft=this.boxPadding+"px";
_ad.style.paddingRight=this.boxPadding+"px";
this.contentDIV=this.box.appendChild(_ad);
}
};
this.drawPixel=function(_b0,_b1,_b2,_b3,_b4,_b5,_b6,_b7){
var _b8=document.createElement("DIV");
_b8.style.height=_b4+"px";
_b8.style.width="1px";
_b8.style.position="absolute";
_b8.style.fontSize="1px";
_b8.style.overflow="hidden";
var _b9=Math.max(this.settings["tr"].radius,this.settings["tl"].radius);
if(_b6==-1&&this.backgroundImage!=""){
_b8.style.backgroundImage=this.backgroundImage;
_b8.style.backgroundPosition="-"+(this.boxWidth-(_b7-_b0)+this.borderWidth)+"px -"+((this.boxHeight+_b9+_b1)-this.borderWidth)+"px";
}else{
_b8.style.backgroundColor=_b2;
}
if(_b3!=100){
setOpacity(_b8,_b3);
}
_b8.style.top=_b1+"px";
_b8.style.left=_b0+"px";
_b5.appendChild(_b8);
};
}
function insertAfter(_ba,_bb,_bc){
_ba.insertBefore(_bb,_bc.nextSibling);
}
function BlendColour(_bd,_be,_bf){
var _c0=parseInt(_bd.substr(1,2),16);
var _c1=parseInt(_bd.substr(3,2),16);
var _c2=parseInt(_bd.substr(5,2),16);
var _c3=parseInt(_be.substr(1,2),16);
var _c4=parseInt(_be.substr(3,2),16);
var _c5=parseInt(_be.substr(5,2),16);
if(_bf>1||_bf<0){
_bf=1;
}
var _c6=Math.round((_c0*_bf)+(_c3*(1-_bf)));
if(_c6>255){
_c6=255;
}
if(_c6<0){
_c6=0;
}
var _c7=Math.round((_c1*_bf)+(_c4*(1-_bf)));
if(_c7>255){
_c7=255;
}
if(_c7<0){
_c7=0;
}
var _c8=Math.round((_c2*_bf)+(_c5*(1-_bf)));
if(_c8>255){
_c8=255;
}
if(_c8<0){
_c8=0;
}
return "#"+IntToHex(_c6)+IntToHex(_c7)+IntToHex(_c8);
}
function IntToHex(_c9){
base=_c9/16;
rem=_c9%16;
base=base-(rem/16);
baseS=MakeHex(base);
remS=MakeHex(rem);
return baseS+""+remS;
}
function MakeHex(x){
if((x>=0)&&(x<=9)){
return x;
}else{
switch(x){
case 10:
return "A";
case 11:
return "B";
case 12:
return "C";
case 13:
return "D";
case 14:
return "E";
case 15:
return "F";
}
}
}
function pixelFraction(x,y,r){
var _ce=0;
var _cf=new Array(1);
var _d0=new Array(1);
var _d1=0;
var _d2="";
var _d3=Math.sqrt((Math.pow(r,2)-Math.pow(x,2)));
if((_d3>=y)&&(_d3<(y+1))){
_d2="Left";
_cf[_d1]=0;
_d0[_d1]=_d3-y;
_d1=_d1+1;
}
var _d3=Math.sqrt((Math.pow(r,2)-Math.pow(y+1,2)));
if((_d3>=x)&&(_d3<(x+1))){
_d2=_d2+"Top";
_cf[_d1]=_d3-x;
_d0[_d1]=1;
_d1=_d1+1;
}
var _d3=Math.sqrt((Math.pow(r,2)-Math.pow(x+1,2)));
if((_d3>=y)&&(_d3<(y+1))){
_d2=_d2+"Right";
_cf[_d1]=1;
_d0[_d1]=_d3-y;
_d1=_d1+1;
}
var _d3=Math.sqrt((Math.pow(r,2)-Math.pow(y,2)));
if((_d3>=x)&&(_d3<(x+1))){
_d2=_d2+"Bottom";
_cf[_d1]=_d3-x;
_d0[_d1]=0;
}
switch(_d2){
case "LeftRight":
_ce=Math.min(_d0[0],_d0[1])+((Math.max(_d0[0],_d0[1])-Math.min(_d0[0],_d0[1]))/2);
break;
case "TopRight":
_ce=1-(((1-_cf[0])*(1-_d0[1]))/2);
break;
case "TopBottom":
_ce=Math.min(_cf[0],_cf[1])+((Math.max(_cf[0],_cf[1])-Math.min(_cf[0],_cf[1]))/2);
break;
case "LeftBottom":
_ce=(_d0[0]*_cf[1])/2;
break;
default:
_ce=1;
}
return _ce;
}
function rgb2Hex(_d4){
try{
var _d5=rgb2Array(_d4);
var red=parseInt(_d5[0]);
var _d7=parseInt(_d5[1]);
var _d8=parseInt(_d5[2]);
var _d9="#"+IntToHex(red)+IntToHex(_d7)+IntToHex(_d8);
}
catch(e){
alert("There was an error converting the RGB value to Hexadecimal in function rgb2Hex");
}
return _d9;
}
function rgb2Array(_da){
var _db=_da.substring(4,_da.indexOf(")"));
var _dc=_db.split(", ");
return _dc;
}
function setOpacity(obj,_de){
_de=(_de==100)?99.999:_de;
if(isSafari&&obj.tagName!="IFRAME"){
var _df=rgb2Array(obj.style.backgroundColor);
var red=parseInt(_df[0]);
var _e1=parseInt(_df[1]);
var _e2=parseInt(_df[2]);
obj.style.backgroundColor="rgba("+red+", "+_e1+", "+_e2+", "+_de/100+")";
}else{
if(typeof (obj.style.opacity)!="undefined"){
obj.style.opacity=_de/100;
}else{
if(typeof (obj.style.MozOpacity)!="undefined"){
obj.style.MozOpacity=_de/100;
}else{
if(typeof (obj.style.filter)!="undefined"){
obj.style.filter="alpha(opacity:"+_de+")";
}else{
if(typeof (obj.style.KHTMLOpacity)!="undefined"){
obj.style.KHTMLOpacity=_de/100;
}
}
}
}
}
}
function inArray(_e3,_e4){
for(var i=0;i<_e3.length;i++){
if(_e3[i]===_e4){
return i;
}
}
return false;
}
function inArrayKey(_e6,_e7){
for(key in _e6){
if(key===_e7){
return true;
}
}
return false;
}
function addEvent(elm,_e9,fn,_eb){
if(elm.addEventListener){
elm.addEventListener(_e9,fn,_eb);
return true;
}else{
if(elm.attachEvent){
var r=elm.attachEvent("on"+_e9,fn);
return r;
}else{
elm["on"+_e9]=fn;
}
}
}
function removeEvent(obj,_ee,fn,_f0){
if(obj.removeEventListener){
obj.removeEventListener(_ee,fn,_f0);
return true;
}else{
if(obj.detachEvent){
var r=obj.detachEvent("on"+_ee,fn);
return r;
}else{
alert("Handler could not be removed");
}
}
}
function format_colour(_f2){
var _f3="#ffffff";
if(_f2!=""&&_f2!="transparent"){
if(_f2.substr(0,3)=="rgb"){
_f3=rgb2Hex(_f2);
}else{
if(_f2.length==4){
_f3="#"+_f2.substring(1,2)+_f2.substring(1,2)+_f2.substring(2,3)+_f2.substring(2,3)+_f2.substring(3,4)+_f2.substring(3,4);
}else{
_f3=_f2;
}
}
}
return _f3;
}
function get_style(obj,_f5,_f6){
try{
if(obj.currentStyle){
var _f7=eval("obj.currentStyle."+_f5);
}else{
if(isSafari&&obj.style.display=="none"){
obj.style.display="";
var _f8=true;
}
var _f7=document.defaultView.getComputedStyle(obj,"").getPropertyValue(_f6);
if(isSafari&&_f8){
obj.style.display="none";
}
}
}
catch(e){
}
return _f7;
}
function getElementsByClass(_f9,_fa,tag){
var _fc=new Array();
if(_fa==null){
_fa=document;
}
if(tag==null){
tag="*";
}
var els=_fa.getElementsByTagName(tag);
var _fe=els.length;
var _ff=new RegExp("(^|s)"+_f9+"(s|$)");
for(i=0,j=0;i<_fe;i++){
if(_ff.test(els[i].className)){
_fc[j]=els[i];
j++;
}
}
return _fc;
}
function newCurvyError(_100){
return new Error("curvyCorners Error:\n"+_100);
}
if(typeof deconcept=="undefined"){
var deconcept=new Object();
}
if(typeof deconcept.util=="undefined"){
deconcept.util=new Object();
}
if(typeof deconcept.SWFObjectUtil=="undefined"){
deconcept.SWFObjectUtil=new Object();
}
deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a,_b){
if(!document.getElementById){
return;
}
this.DETECT_KEY=_b?_b:"detectflash";
this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);
this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
if(_1){
this.setAttribute("swf",_1);
}
if(id){
this.setAttribute("id",id);
}
if(w){
this.setAttribute("width",w);
}
if(h){
this.setAttribute("height",h);
}
if(_5){
this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));
}
this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();
if(c){
this.addParam("bgcolor",c);
}
var q=_8?_8:"high";
this.addParam("quality",q);
this.setAttribute("useExpressInstall",_7);
this.setAttribute("doExpressInstall",false);
var _d=(_9)?_9:window.location;
this.setAttribute("xiRedirectUrl",_d);
this.setAttribute("redirectUrl","");
if(_a){
this.setAttribute("redirectUrl",_a);
}
};
deconcept.SWFObject.prototype={setAttribute:function(_e,_f){
this.attributes[_e]=_f;
},getAttribute:function(_10){
return this.attributes[_10];
},addParam:function(_11,_12){
this.params[_11]=_12;
},getParams:function(){
return this.params;
},addVariable:function(_13,_14){
this.variables[_13]=_14;
},getVariable:function(_15){
return this.variables[_15];
},getVariables:function(){
return this.variables;
},getVariablePairs:function(){
var _16=new Array();
var key;
var _18=this.getVariables();
for(key in _18){
_16.push(key+"="+_18[key]);
}
return _16;
},getSWFHTML:function(){
var _19="";
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
if(this.getAttribute("doExpressInstall")){
this.addVariable("MMplayerType","PlugIn");
}
_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
var _1a=this.getParams();
for(var key in _1a){
_19+=[key]+"=\""+_1a[key]+"\" ";
}
var _1c=this.getVariablePairs().join("&");
if(_1c.length>0){
_19+="flashvars=\""+_1c+"\"";
}
_19+="/>";
}else{
if(this.getAttribute("doExpressInstall")){
this.addVariable("MMplayerType","ActiveX");
}
_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
var _1d=this.getParams();
for(var key in _1d){
_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";
}
var _1f=this.getVariablePairs().join("&");
if(_1f.length>0){
_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";
}
_19+="</object>";
}
return _19;
},write:function(_20){
if(this.getAttribute("useExpressInstall")){
var _21=new deconcept.PlayerVersion([6,0,65]);
if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){
this.setAttribute("doExpressInstall",true);
this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));
document.title=document.title.slice(0,47)+" - Flash Player Installation";
this.addVariable("MMdoctitle",document.title);
}
}
if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){
var n=(typeof _20=="string")?document.getElementById(_20):_20;
n.innerHTML=this.getSWFHTML();
return true;
}else{
if(this.getAttribute("redirectUrl")!=""){
document.location.replace(this.getAttribute("redirectUrl"));
}
}
return false;
}};
deconcept.SWFObjectUtil.getPlayerVersion=function(){
var _23=new deconcept.PlayerVersion([0,0,0]);
if(navigator.plugins&&navigator.mimeTypes.length){
var x=navigator.plugins["Shockwave Flash"];
if(x&&x.description){
_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));
}
}else{
try{
var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
}
catch(e){
try{
var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
_23=new deconcept.PlayerVersion([6,0,21]);
axo.AllowScriptAccess="always";
}
catch(e){
if(_23.major==6){
return _23;
}
}
try{
axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
}
catch(e){
}
}
if(axo!=null){
_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
}
}
return _23;
};
deconcept.PlayerVersion=function(_27){
this.major=_27[0]!=null?parseInt(_27[0]):0;
this.minor=_27[1]!=null?parseInt(_27[1]):0;
this.rev=_27[2]!=null?parseInt(_27[2]):0;
};
deconcept.PlayerVersion.prototype.versionIsValid=function(fv){
if(this.major<fv.major){
return false;
}
if(this.major>fv.major){
return true;
}
if(this.minor<fv.minor){
return false;
}
if(this.minor>fv.minor){
return true;
}
if(this.rev<fv.rev){
return false;
}
return true;
};
deconcept.util={getRequestParameter:function(_29){
var q=document.location.search||document.location.hash;
if(q){
var _2b=q.substring(1).split("&");
for(var i=0;i<_2b.length;i++){
if(_2b[i].substring(0,_2b[i].indexOf("="))==_29){
return _2b[i].substring((_2b[i].indexOf("=")+1));
}
}
}
return "";
}};
deconcept.SWFObjectUtil.cleanupSWFs=function(){
if(window.opera||!document.all){
return;
}
var _2d=document.getElementsByTagName("OBJECT");
for(var i=0;i<_2d.length;i++){
_2d[i].style.display="none";
for(var x in _2d[i]){
if(typeof _2d[i][x]=="function"){
_2d[i][x]=function(){
};
}
}
}
};
deconcept.SWFObjectUtil.prepUnload=function(){
__flash_unloadHandler=function(){
};
__flash_savedUnloadHandler=function(){
};
if(typeof window.onunload=="function"){
var _30=window.onunload;
window.onunload=function(){
deconcept.SWFObjectUtil.cleanupSWFs();
_30();
};
}else{
window.onunload=deconcept.SWFObjectUtil.cleanupSWFs;
}
};
if(typeof window.onbeforeunload=="function"){
var oldBeforeUnload=window.onbeforeunload;
window.onbeforeunload=function(){
deconcept.SWFObjectUtil.prepUnload();
oldBeforeUnload();
};
}else{
window.onbeforeunload=deconcept.SWFObjectUtil.prepUnload;
}
if(Array.prototype.push==null){
Array.prototype.push=function(_31){
this[this.length]=_31;
return this.length;
};
}
var getQueryParamValue=deconcept.util.getRequestParameter;
var FlashObject=deconcept.SWFObject;
var SWFObject=deconcept.SWFObject;
if(typeof infosoftglobal=="undefined"){
var infosoftglobal=new Object();
}
if(typeof infosoftglobal.FusionChartsUtil=="undefined"){
infosoftglobal.FusionChartsUtil=new Object();
}
infosoftglobal.FusionCharts=function(swf,id,w,h,_134,_135,c,_137,lang,_139,_13a){
if(!document.getElementById){
return;
}
this.initialDataSet=false;
this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
if(swf){
this.setAttribute("swf",swf);
}
if(id){
this.setAttribute("id",id);
}
if(w){
this.setAttribute("width",w);
}
if(h){
this.setAttribute("height",h);
}
if(c){
this.addParam("bgcolor",c);
}
this.addParam("quality","high");
this.addParam("allowScriptAccess","always");
this.addVariable("chartWidth",w);
this.addVariable("chartHeight",h);
_134=_134?_134:0;
this.addVariable("debugMode",_134);
this.addVariable("DOMId",id);
_135=_135?_135:0;
this.addVariable("registerWithJS",_135);
_137=_137?_137:"noScale";
this.addVariable("scaleMode",_137);
lang=lang?lang:"EN";
this.addVariable("lang",lang);
this.detectFlashVersion=_139?_139:1;
this.autoInstallRedirect=_13a?_13a:1;
this.installedVer=infosoftglobal.FusionChartsUtil.getPlayerVersion();
if(!window.opera&&document.all&&this.installedVer.major>7){
infosoftglobal.FusionCharts.doPrepUnload=true;
}
};
infosoftglobal.FusionCharts.prototype={setAttribute:function(name,_13c){
this.attributes[name]=_13c;
},getAttribute:function(name){
return this.attributes[name];
},addParam:function(name,_13f){
this.params[name]=_13f;
},getParams:function(){
return this.params;
},addVariable:function(name,_141){
this.variables[name]=_141;
},getVariable:function(name){
return this.variables[name];
},getVariables:function(){
return this.variables;
},getVariablePairs:function(){
var _143=new Array();
var key;
var _145=this.getVariables();
for(key in _145){
_143.push(key+"="+_145[key]);
}
return _143;
},getSWFHTML:function(){
var _146="";
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
_146="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"  ";
_146+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
var _147=this.getParams();
for(var key in _147){
_146+=[key]+"=\""+_147[key]+"\" ";
}
var _149=this.getVariablePairs().join("&");
if(_149.length>0){
_146+="flashvars=\""+_149+"\"";
}
_146+="/>";
}else{
_146="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
_146+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
var _147=this.getParams();
for(var key in _147){
_146+="<param name=\""+key+"\" value=\""+_147[key]+"\" />";
}
var _149=this.getVariablePairs().join("&");
if(_149.length>0){
_146+="<param name=\"flashvars\" value=\""+_149+"\" />";
}
_146+="</object>";
}
return _146;
},setDataURL:function(_14a){
if(this.initialDataSet==false){
this.addVariable("dataURL",_14a);
this.initialDataSet=true;
}else{
var _14b=infosoftglobal.FusionChartsUtil.getChartObject(this.getAttribute("id"));
_14b.setDataURL(_14a);
}
},setDataXML:function(_14c){
if(this.initialDataSet==false){
this.addVariable("dataXML",_14c);
this.initialDataSet=true;
}else{
var _14d=infosoftglobal.FusionChartsUtil.getChartObject(this.getAttribute("id"));
_14d.setDataXML(_14c);
}
},setTransparent:function(_14e){
if(typeof _14e=="undefined"){
_14e=true;
}
if(_14e){
this.addParam("WMode","transparent");
}else{
this.addParam("WMode","Opaque");
}
},render:function(_14f){
if((this.detectFlashVersion==1)&&(this.installedVer.major<8)){
if(this.autoInstallRedirect==1){
var _150=window.confirm("You need Adobe Flash Player 8 (or above) to view the charts. It is a free and lightweight installation from Adobe.com. Please click on Ok to install the same.");
if(_150){
window.location="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
}else{
return false;
}
}else{
return false;
}
}else{
var n=(typeof _14f=="string")?document.getElementById(_14f):_14f;
n.innerHTML=this.getSWFHTML();
if(!document.embeds[this.getAttribute("id")]&&!window[this.getAttribute("id")]){
window[this.getAttribute("id")]=document.getElementById(this.getAttribute("id"));
}
return true;
}
}};
infosoftglobal.FusionChartsUtil.getPlayerVersion=function(){
var _152=new infosoftglobal.PlayerVersion([0,0,0]);
if(navigator.plugins&&navigator.mimeTypes.length){
var x=navigator.plugins["Shockwave Flash"];
if(x&&x.description){
_152=new infosoftglobal.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));
}
}else{
if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){
var axo=1;
var _155=3;
while(axo){
try{
_155++;
axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_155);
_152=new infosoftglobal.PlayerVersion([_155,0,0]);
}
catch(e){
axo=null;
}
}
}else{
try{
var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
}
catch(e){
try{
var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
_152=new infosoftglobal.PlayerVersion([6,0,21]);
axo.AllowScriptAccess="always";
}
catch(e){
if(_152.major==6){
return _152;
}
}
try{
axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
}
catch(e){
}
}
if(axo!=null){
_152=new infosoftglobal.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
}
}
}
return _152;
};
infosoftglobal.PlayerVersion=function(_156){
this.major=_156[0]!=null?parseInt(_156[0]):0;
this.minor=_156[1]!=null?parseInt(_156[1]):0;
this.rev=_156[2]!=null?parseInt(_156[2]):0;
};
infosoftglobal.FusionChartsUtil.cleanupSWFs=function(){
var _157=document.getElementsByTagName("OBJECT");
for(var i=_157.length-1;i>=0;i--){
_157[i].style.display="none";
for(var x in _157[i]){
if(typeof _157[i][x]=="function"){
_157[i][x]=function(){
};
}
}
}
};
if(infosoftglobal.FusionCharts.doPrepUnload){
if(!infosoftglobal.unloadSet){
infosoftglobal.FusionChartsUtil.prepUnload=function(){
__flash_unloadHandler=function(){
};
__flash_savedUnloadHandler=function(){
};
window.attachEvent("onunload",infosoftglobal.FusionChartsUtil.cleanupSWFs);
};
window.attachEvent("onbeforeunload",infosoftglobal.FusionChartsUtil.prepUnload);
infosoftglobal.unloadSet=true;
}
}
if(!document.getElementById&&document.all){
document.getElementById=function(id){
return document.all[id];
};
}
if(Array.prototype.push==null){
Array.prototype.push=function(item){
this[this.length]=item;
return this.length;
};
}
infosoftglobal.FusionChartsUtil.getChartObject=function(id){
var _15d=null;
if(navigator.appName.indexOf("Microsoft Internet")==-1){
if(document.embeds&&document.embeds[id]){
_15d=document.embeds[id];
}else{
_15d=window.document[id];
}
}else{
_15d=window[id];
}
if(!_15d){
_15d=document.getElementById(id);
}
return _15d;
};
var getChartFromId=infosoftglobal.FusionChartsUtil.getChartObject;
var FusionCharts=infosoftglobal.FusionCharts;
DomBuilder={IE_TRANSLATIONS:{"class":"className","for":"htmlFor"},ieAttrSet:function(a,i,el){
var _161;
if(_161=this.IE_TRANSLATIONS[i]){
el[_161]=a[i];
}else{
if(i=="style"){
el.style.cssText=a[i];
}else{
if(i.match(/^on/)){
el[i]=new Function(a[i]);
}else{
el.setAttribute(i,a[i]);
}
}
}
},apply:function(doc,o){
o=o||{};
doc=doc||document;
var els=("p|div|span|strong|em|img|table|tr|td|th|thead|tbody|tfoot|pre|code|"+"h1|h2|h3|h4|h5|h6|ul|ol|li|form|input|textarea|legend|fieldset|"+"select|option|blockquote|cite|br|hr|dd|dl|dt|address|a|button|abbr|acronym|"+"script|link|style|bdo|ins|del|object|param|col|colgroup|optgroup|caption|"+"label|dfn|kbd|samp|var|iframe").split("|");
var el,i=0;
while(el=els[i++]){
o[el.toUpperCase()]=DomBuilder.tagFunc(el,doc);
}
return o;
},tagFunc:function(tag,doc){
var isIE=navigator.userAgent.match(/MSIE/);
return function(){
var a=arguments,at,ch;
a.slice=[].slice;
if(a.length>0){
if(a[0].nodeName||typeof a[0]=="string"||typeof a[0]=="number"){
ch=a;
}else{
at=a[0];
ch=a.slice(1);
}
}
return DomBuilder.elem(tag,at,ch,doc,isIE);
};
},elem:function(e,a,c,doc,isIE){
a=a||{};
c=c||[];
var el=doc.createElement((isIE&&a.name)?"<"+e+" name="+a.name+">":e);
for(var i in a){
if(typeof a[i]!="function"){
if(isIE){
this.ieAttrSet(a,i,el);
}else{
el.setAttribute(i,a[i]);
}
}
}
DomBuilder.addChildren(el,c,doc);
return el;
},addChildren:function(el,c,doc){
for(var i=0;i<c.length;i++){
if(c[i]===null){
continue;
}
if(typeof c[i]=="object"&&c[i].length&&!c[i].nodeName){
DomBuilder.addChildren(el,c[i],doc);
}else{
if(typeof c[i]=="string"||typeof c[i]=="number"){
c[i]=doc.createTextNode(c[i]);
}
el.appendChild(c[i]);
}
}
}};
function SortableTable(_178,_179){
this.sortTypes=_179||[];
this.sortColumn=null;
this.descending=null;
var _17a=this;
this._headerOnclick=function(e){
_17a.headerOnclick(e);
};
if(_178){
this.setTable(_178);
this.document=_178.ownerDocument||_178.document;
}else{
this.document=document;
}
var win=this.document.defaultView||this.document.parentWindow;
this._onunload=function(){
_17a.destroy();
};
if(win&&typeof win.attachEvent!="undefined"){
win.attachEvent("onunload",this._onunload);
}
}
SortableTable.gecko=navigator.product=="Gecko";
SortableTable.msie=/msie/i.test(navigator.userAgent);
SortableTable.removeBeforeSort=SortableTable.gecko;
SortableTable.prototype.onsort=function(){
};
SortableTable.prototype.defaultDescending=false;
SortableTable.prototype._sortTypeInfo={};
SortableTable.prototype.setTable=function(_17d){
if(this.tHead){
this.uninitHeader();
}
this.element=_17d;
this.setTHead(_17d.tHead);
this.setTBody(_17d.tBodies[0]);
};
SortableTable.prototype.setTHead=function(_17e){
if(this.tHead&&this.tHead!=_17e){
this.uninitHeader();
}
this.tHead=_17e;
this.initHeader(this.sortTypes);
};
SortableTable.prototype.setTBody=function(_17f){
this.tBody=_17f;
};
SortableTable.prototype.setSortTypes=function(_180){
if(this.tHead){
this.uninitHeader();
}
this.sortTypes=_180||[];
if(this.tHead){
this.initHeader(this.sortTypes);
}
};
SortableTable.prototype.initHeader=function(_181){
if(!this.tHead){
return;
}
var _182=this.tHead.rows[0].cells;
var doc=this.tHead.ownerDocument||this.tHead.document;
this.sortTypes=_181||[];
var l=_182.length;
var img,c;
for(var i=0;i<l;i++){
c=_182[i];
if(this.sortTypes[i]!=null&&this.sortTypes[i]!="None"){
img=doc.createElement("IMG");
img.src="img/blank.png";
c.appendChild(img);
if(this.sortTypes[i]!=null){
c._sortType=this.sortTypes[i];
}
if(typeof c.addEventListener!="undefined"){
c.addEventListener("click",this._headerOnclick,false);
}else{
if(typeof c.attachEvent!="undefined"){
c.attachEvent("onclick",this._headerOnclick);
}else{
c.onclick=this._headerOnclick;
}
}
}else{
c.setAttribute("_sortType",_181[i]);
c._sortType="None";
}
}
this.updateHeaderArrows();
};
SortableTable.prototype.uninitHeader=function(){
if(!this.tHead){
return;
}
var _188=this.tHead.rows[0].cells;
var l=_188.length;
var c;
for(var i=0;i<l;i++){
c=_188[i];
if(c._sortType!=null&&c._sortType!="None"){
c.removeChild(c.lastChild);
if(typeof c.removeEventListener!="undefined"){
c.removeEventListener("click",this._headerOnclick,false);
}else{
if(typeof c.detachEvent!="undefined"){
c.detachEvent("onclick",this._headerOnclick);
}
}
c._sortType=null;
c.removeAttribute("_sortType");
}
}
};
SortableTable.prototype.updateHeaderArrows=function(){
if(!this.tHead){
return;
}
var _18c=this.tHead.rows[0].cells;
var l=_18c.length;
var img;
for(var i=0;i<l;i++){
if(_18c[i]._sortType!=null&&_18c[i]._sortType!="None"){
img=_18c[i].lastChild;
if(i==this.sortColumn){
img.className="sort-arrow "+(this.descending?"descending":"ascending");
}else{
img.className="sort-arrow";
}
}
}
};
SortableTable.prototype.headerOnclick=function(e){
var el=e.target||e.srcElement;
while(el.tagName!="TD"){
el=el.parentNode;
}
this.sort(SortableTable.msie?SortableTable.getCellIndex(el):el.cellIndex);
};
SortableTable.getCellIndex=function(oTd){
var _193=oTd.parentNode.childNodes;
var l=_193.length;
var i;
for(i=0;_193[i]!=oTd&&i<l;i++){
}
return i;
};
SortableTable.prototype.getSortType=function(_196){
return this.sortTypes[_196]||"String";
};
SortableTable.prototype.sort=function(_197,_198,_199){
if(!this.tBody){
return;
}
if(_199==null){
_199=this.getSortType(_197);
}
if(_199=="None"){
return;
}
if(_198==null){
if(this.sortColumn!=_197){
this.descending=this.defaultDescending;
}else{
this.descending=!this.descending;
}
}else{
this.descending=_198;
}
this.sortColumn=_197;
if(typeof this.onbeforesort=="function"){
this.onbeforesort();
}
var f=this.getSortFunction(_199,_197);
var a=this.getCache(_199,_197);
var _19c=this.tBody;
a.sort(f);
if(this.descending){
a.reverse();
}
if(SortableTable.removeBeforeSort){
var _19d=_19c.nextSibling;
var p=_19c.parentNode;
p.removeChild(_19c);
}
var l=a.length;
for(var i=0;i<l;i++){
_19c.appendChild(a[i].element);
var dr=a[i].dragRows;
for(var j=0;j<dr.length;j++){
_19c.appendChild(dr[j]);
}
}
if(SortableTable.removeBeforeSort){
p.insertBefore(_19c,_19d);
}
this.updateHeaderArrows();
this.destroyCache(a);
if(typeof this.onsort=="function"){
this.onsort();
}
};
SortableTable.prototype.asyncSort=function(_1a3,_1a4,_1a5){
var _1a6=this;
this._asyncsort=function(){
_1a6.sort(_1a3,_1a4,_1a5);
};
window.setTimeout(this._asyncsort,1);
};
SortableTable.prototype.getCache=function(_1a7,_1a8){
if(!this.tBody){
return [];
}
var rows=this.tBody.rows;
var l=rows.length;
var a=new Array();
var r;
for(var i=0;i<l;i++){
r=rows[i];
if(YUIDom.hasClass(r,"dragRow")){
a[a.length-1].dragRows.push(r);
}else{
a.push({value:this.getRowValue(r,_1a7,_1a8),element:r,dragRows:[]});
}
}
return a;
};
SortableTable.prototype.destroyCache=function(_1ae){
var l=_1ae.length;
for(var i=0;i<l;i++){
var o=_1ae[i],r=o.dragRows;
for(var j=0;j<r.length;j++){
r[j]=null;
}
r=null;
o.value=null;
o.element=null;
o=null;
}
};
SortableTable.prototype.getRowValue=function(oRow,_1b5,_1b6){
if(this._sortTypeInfo[_1b5]&&this._sortTypeInfo[_1b5].getRowValue){
return this._sortTypeInfo[_1b5].getRowValue(oRow,_1b6);
}
var s;
var c=oRow.cells[_1b6];
if(typeof c.innerText!="undefined"){
s=c.innerText;
}else{
s=SortableTable.getInnerText(c);
}
return this.getValueFromString(s,_1b5);
};
SortableTable.getInnerText=function(_1b9){
var s="";
var cs=_1b9.childNodes;
var l=cs.length;
for(var i=0;i<l;i++){
switch(cs[i].nodeType){
case 1:
s+=SortableTable.getInnerText(cs[i]);
break;
case 3:
s+=cs[i].nodeValue;
break;
}
}
return s;
};
SortableTable.prototype.getValueFromString=function(_1be,_1bf){
if(this._sortTypeInfo[_1bf]){
return this._sortTypeInfo[_1bf].getValueFromString(_1be);
}
return _1be;
};
SortableTable.prototype.getSortFunction=function(_1c0,_1c1){
if(this._sortTypeInfo[_1c0]){
return this._sortTypeInfo[_1c0].compare;
}
return SortableTable.basicCompare;
};
SortableTable.prototype.destroy=function(){
this.uninitHeader();
var win=this.document.parentWindow;
if(win&&typeof win.detachEvent!="undefined"){
win.detachEvent("onunload",this._onunload);
}
this._onunload=null;
this.element=null;
this.tHead=null;
this.tBody=null;
this.document=null;
this._headerOnclick=null;
this.sortTypes=null;
this._asyncsort=null;
this.onsort=null;
};
SortableTable.prototype.addSortType=function(_1c3,_1c4,_1c5,_1c6){
this._sortTypeInfo[_1c3]={type:_1c3,getValueFromString:_1c4||SortableTable.idFunction,compare:_1c5||SortableTable.basicCompare,getRowValue:_1c6};
};
SortableTable.prototype.removeSortType=function(_1c7){
delete this._sortTypeInfo[_1c7];
};
SortableTable.basicCompare=function compare(n1,n2){
if(n1.value<n2.value){
return -1;
}
if(n2.value<n1.value){
return 1;
}
return 0;
};
SortableTable.idFunction=function(x){
return x;
};
SortableTable.toUpperCase=function(s){
return s.toUpperCase();
};
SortableTable.toDate=function(s){
var _1cd=s.split("-");
var d=new Date(0);
d.setFullYear(_1cd[0]);
d.setDate(_1cd[2]);
d.setMonth(_1cd[1]-1);
return d.valueOf();
};
SortableTable.prototype.addSortType("Number",Number);
SortableTable.prototype.addSortType("CaseInsensitiveString",SortableTable.toUpperCase);
SortableTable.prototype.addSortType("Date",SortableTable.toDate);
SortableTable.prototype.addSortType("String");
var hasFlash=function(){
var a=6;
if(navigator.appVersion.indexOf("MSIE")!=-1&&navigator.appVersion.indexOf("Windows")>-1){
document.write("<script language=\"VBScript\"> \non error resume next \nhasFlash = (IsObject(CreateObject(\"ShockwaveFlash.ShockwaveFlash.\" & "+a+"))) \n</script> \n");
if(window.hasFlash!=null){
return window.hasFlash;
}
}
if(navigator.mimeTypes&&navigator.mimeTypes["application/x-shockwave-flash"]&&navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){
var b=(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description;
return parseInt(b.charAt(b.indexOf(".")-1))>=a;
}
return false;
}();
String.prototype.normalize=function(){
return this.replace(/\s+/g," ");
};
if(Array.prototype.push==null){
Array.prototype.push=function(){
var i=0,a=this.length,b=arguments.length;
while(i<b){
this[a++]=arguments[i++];
}
return this.length;
};
}
if(!Function.prototype.apply){
Function.prototype.apply=function(a,b){
var c=[];
var d,e;
if(!a){
a=window;
}
if(!b){
b=[];
}
for(var i=0;i<b.length;i++){
c[i]="b["+i+"]";
}
e="a.__applyTemp__("+c.join(",")+");";
a.__applyTemp__=this;
d=eval(e);
a.__applyTemp__=null;
return d;
};
}
function named(a){
return new named.Arguments(a);
}
named.Arguments=function(a){
this.oArgs=a;
};
named.Arguments.prototype.constructor=named.Arguments;
named.extract=function(a,b){
var c,d;
var i=a.length;
while(i--){
d=a[i];
if(d!=null&&d.constructor!=null&&d.constructor==named.Arguments){
c=a[i].oArgs;
break;
}
}
if(c==null){
return;
}
for(e in c){
if(b[e]!=null){
b[e](c[e]);
}
}
return;
};
var parseSelector=function(){
var a=/^([^#.>`]*)(#|\.|\>|\`)(.+)$/;
function r(s,t){
var u=s.split(/\s*\,\s*/);
var v=[];
for(var i=0;i<u.length;i++){
v=v.concat(b(u[i],t));
}
return v;
}
function b(c,d,e){
c=c.normalize().replace(" ","`");
var f=c.match(a);
var g,h,i,j,k,n;
var l=[];
if(f==null){
f=[c,c];
}
if(f[1]==""){
f[1]="*";
}
if(e==null){
e="`";
}
if(d==null){
d=document;
}
switch(f[2]){
case "#":
k=f[3].match(a);
if(k==null){
k=[null,f[3]];
}
g=document.getElementById(k[1]);
if(g==null||(f[1]!="*"&&!o(g,f[1]))){
return l;
}
if(k.length==2){
l.push(g);
return l;
}
return b(k[3],g,k[2]);
case ".":
if(e!=">"){
h=m(d,f[1]);
}else{
h=d.childNodes;
}
for(i=0,n=h.length;i<n;i++){
g=h[i];
if(g.nodeType!=1){
continue;
}
k=f[3].match(a);
if(k!=null){
if(g.className==null||g.className.match("(\\s|^)"+k[1]+"(\\s|$)")==null){
continue;
}
j=b(k[3],g,k[2]);
l=l.concat(j);
}else{
if(g.className!=null&&g.className.match("(\\s|^)"+f[3]+"(\\s|$)")!=null){
l.push(g);
}
}
}
return l;
case ">":
if(e!=">"){
h=m(d,f[1]);
}else{
h=d.childNodes;
}
for(i=0,n=h.length;i<n;i++){
g=h[i];
if(g.nodeType!=1){
continue;
}
if(!o(g,f[1])){
continue;
}
j=b(f[3],g,">");
l=l.concat(j);
}
return l;
case "`":
h=m(d,f[1]);
for(i=0,n=h.length;i<n;i++){
g=h[i];
j=b(f[3],g,"`");
l=l.concat(j);
}
return l;
default:
if(e!=">"){
h=m(d,f[1]);
}else{
h=d.childNodes;
}
for(i=0,n=h.length;i<n;i++){
g=h[i];
if(g.nodeType!=1){
continue;
}
if(!o(g,f[1])){
continue;
}
l.push(g);
}
return l;
}
}
function m(d,o){
if(o=="*"&&d.all!=null){
return d.all;
}
return d.getElementsByTagName(o);
}
function o(p,q){
return q=="*"?true:p.nodeName.toLowerCase().replace("html:","")==q.toLowerCase();
}
return r;
}();
var sIFR=function(){
var a="http://www.w3.org/1999/xhtml";
var b=false;
var c=false;
var d;
var ah=[];
var al=document;
var ak=al.documentElement;
var am=window;
var au=al.addEventListener;
var av=am.addEventListener;
var f=function(){
var g=navigator.userAgent.toLowerCase();
var f={a:g.indexOf("applewebkit")>-1,b:g.indexOf("safari")>-1,c:navigator.product!=null&&navigator.product.toLowerCase().indexOf("konqueror")>-1,d:g.indexOf("opera")>-1,e:al.contentType!=null&&al.contentType.indexOf("xml")>-1,f:true,g:true,h:null,i:null,j:null,k:null};
f.l=f.a||f.c;
f.m=!f.a&&navigator.product!=null&&navigator.product.toLowerCase()=="gecko";
if(f.m&&g.match(/.*gecko\/(\d{8}).*/)){
f.j=new Number(g.match(/.*gecko\/(\d{8}).*/)[1]);
}
f.n=g.indexOf("msie")>-1&&!f.d&&!f.l&&!f.m;
f.o=f.n&&g.match(/.*mac.*/)!=null;
if(f.d&&g.match(/.*opera(\s|\/)(\d+\.\d+)/)){
f.i=new Number(g.match(/.*opera(\s|\/)(\d+\.\d+)/)[2]);
}
if(f.n||(f.d&&f.i<7.6)){
f.g=false;
}
if(f.a&&g.match(/.*applewebkit\/(\d+).*/)){
f.k=new Number(g.match(/.*applewebkit\/(\d+).*/)[1]);
}
if(am.hasFlash&&(!f.n||f.o)){
var aj=(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description;
f.h=parseInt(aj.charAt(aj.indexOf(".")-1));
}
if(g.match(/.*(windows|mac).*/)==null||f.o||f.c||(f.d&&(g.match(/.*mac.*/)!=null||f.i<7.6))||(f.b&&f.h<7)||(!f.b&&f.a&&f.k<312)||(f.m&&f.j<20020523)){
f.f=false;
}
if(!f.o&&!f.m&&al.createElementNS){
try{
al.createElementNS(a,"i").innerHTML="";
}
catch(e){
f.e=true;
}
}
f.p=f.c||(f.a&&f.k<312);
return f;
}();
function at(){
return {bIsWebKit:f.a,bIsSafari:f.b,bIsKonq:f.c,bIsOpera:f.d,bIsXML:f.e,bHasTransparencySupport:f.f,bUseDOM:f.g,nFlashVersion:f.h,nOperaVersion:f.i,nGeckoBuildDate:f.j,nWebKitVersion:f.k,bIsKHTML:f.l,bIsGecko:f.m,bIsIE:f.n,bIsIEMac:f.o,bUseInnerHTMLHack:f.p};
}
if(am.hasFlash==false||!al.getElementsByTagName||!al.getElementById||(f.e&&(f.p||f.n))){
return {UA:at()};
}
function af(e){
if((!k.bAutoInit&&(am.event||e)!=null)||!l(e)){
return;
}
b=true;
for(var i=0,h=ah.length;i<h;i++){
j.apply(null,ah[i]);
}
ah=[];
}
var k=af;
function l(e){
if(c==false||k.bIsDisabled==true||((f.e&&f.m||f.l)&&e==null&&b==false)||(al.body==null||al.getElementsByTagName("body").length==0)){
return false;
}
return true;
}
function m(n){
if(f.n){
return n.replace(new RegExp("%d{0}","g"),"%25");
}
return n.replace(new RegExp("%(?!d)","g"),"%25");
}
function as(p,q){
return q=="*"?true:p.nodeName.toLowerCase().replace("html:","")==q.toLowerCase();
}
function o(p,q,r,s,t){
var u="";
var v=p.firstChild;
var w,x,y,z;
if(s==null){
s=0;
}
if(t==null){
t="";
}
while(v){
if(v.nodeType==3){
z=v.nodeValue.replace("<","&lt;");
switch(r){
case "lower":
u+=z.toLowerCase();
break;
case "upper":
u+=z.toUpperCase();
break;
default:
u+=z;
}
}else{
if(v.nodeType==1){
if(as(v,"a")&&!v.getAttribute("href")==false){
if(v.getAttribute("target")){
t+="&sifr_url_"+s+"_target="+v.getAttribute("target");
}
t+="&sifr_url_"+s+"="+m(v.getAttribute("href")).replace(/&/g,"%26");
u+="<a href=\"asfunction:_root.launchURL,"+s+"\">";
s++;
}else{
if(as(v,"br")){
u+="<br/>";
}
}
if(v.hasChildNodes()){
y=o(v,null,r,s,t);
u+=y.u;
s=y.s;
t=y.t;
}
if(as(v,"a")){
u+="</a>";
}
}
}
w=v;
v=v.nextSibling;
if(q!=null){
x=w.parentNode.removeChild(w);
q.appendChild(x);
}
}
return {"u":u,"s":s,"t":t};
}
function A(B){
if(al.createElementNS&&f.g){
return al.createElementNS(a,B);
}
return al.createElement(B);
}
function C(D,E,z){
var p=A("param");
p.setAttribute("name",E);
p.setAttribute("value",z);
D.appendChild(p);
}
function F(p,G){
var H=p.className;
if(H==null){
H=G;
}else{
H=H.normalize()+(H==""?"":" ")+G;
}
p.className=H;
}
function aq(ar){
var a=ak;
if(k.bHideBrowserText==false){
a=al.getElementsByTagName("body")[0];
}
if((k.bHideBrowserText==false||ar)&&a){
if(a.className==null||a.className.match(/\bsIFR\-hasFlash\b/)==null){
F(a,"sIFR-hasFlash");
}
}
}
function j(I,J,K,L,M,N,O,P,Q,R,S,r,T){
if(!l()){
return ah.push(arguments);
}
aq();
named.extract(arguments,{sSelector:function(ap){
I=ap;
},sFlashSrc:function(ap){
J=ap;
},sColor:function(ap){
K=ap;
},sLinkColor:function(ap){
L=ap;
},sHoverColor:function(ap){
M=ap;
},sBgColor:function(ap){
N=ap;
},nPaddingTop:function(ap){
O=ap;
},nPaddingRight:function(ap){
P=ap;
},nPaddingBottom:function(ap){
Q=ap;
},nPaddingLeft:function(ap){
R=ap;
},sFlashVars:function(ap){
S=ap;
},sCase:function(ap){
r=ap;
},sWmode:function(ap){
T=ap;
}});
var U=parseSelector(I);
if(U.length==0){
return false;
}
if(S!=null){
S="&"+S.normalize();
}else{
S="";
}
if(K!=null){
S+="&textcolor="+K;
}
if(M!=null){
S+="&hovercolor="+M;
}
if(M!=null||L!=null){
S+="&linkcolor="+(L||K);
}
if(O==null){
O=0;
}
if(P==null){
P=0;
}
if(Q==null){
Q=0;
}
if(R==null){
R=0;
}
if(N==null){
N="#FFFFFF";
}
if(T=="transparent"){
if(!f.f){
T="opaque";
}else{
N="transparent";
}
}
if(T==null){
T="";
}
var p,V,W,X,Y,Z,aa,ab,ac;
var ad=null;
for(var i=0,h=U.length;i<h;i++){
p=U[i];
if(p.className!=null&&p.className.match(/\bsIFR\-replaced\b/)!=null){
continue;
}
V=p.offsetWidth-R-P;
W=p.offsetHeight-O-Q;
aa=A("span");
aa.className="sIFR-alternate";
ac=o(p,aa,r);
Z="txt="+m(ac.u).replace(/\+/g,"%2B").replace(/&/g,"%26").replace(/\"/g,"%22").normalize()+S+"&w="+V+"&h="+W+ac.t;
F(p,"sIFR-replaced");
if(ad==null||!f.g){
if(!f.g){
if(!f.n){
p.innerHTML=["<embed class=\"sIFR-flash\" type=\"application/x-shockwave-flash\" src=\"",J,"\" quality=\"best\" wmode=\"",T,"\" bgcolor=\"",N,"\" flashvars=\"",Z,"\" width=\"",V,"\" height=\"",W,"\" sifr=\"true\"></embed>"].join("");
}else{
p.innerHTML=["<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" sifr=\"true\" width=\"",V,"\" height=\"",W,"\" class=\"sIFR-flash\"><param name=\"movie\" value=\"",J,"?",Z,"\"></param><param name=\"quality\" value=\"best\"></param><param name=\"wmode\" value=\"",T,"\"></param><param name=\"bgcolor\" value=\"",N,"\"></param> </object>"].join("");
}
}else{
if(f.d){
ab=A("object");
ab.setAttribute("data",J);
C(ab,"quality","best");
C(ab,"wmode",T);
C(ab,"bgcolor",N);
}else{
ab=A("embed");
ab.setAttribute("src",J);
ab.setAttribute("quality","best");
ab.setAttribute("flashvars",Z);
ab.setAttribute("wmode",T);
ab.setAttribute("bgcolor",N);
}
ab.setAttribute("sifr","true");
ab.setAttribute("type","application/x-shockwave-flash");
ab.className="sIFR-flash";
if(!f.l||!f.e){
ad=ab.cloneNode(true);
}
}
}else{
ab=ad.cloneNode(true);
}
if(f.g){
if(f.d){
C(ab,"flashvars",Z);
}else{
ab.setAttribute("flashvars",Z);
}
ab.setAttribute("width",V);
ab.setAttribute("height",W);
ab.style.width=V+"px";
ab.style.height=W+"px";
p.appendChild(ab);
}
p.appendChild(aa);
if(f.p){
p.innerHTML+="";
}
}
if(f.n&&k.bFixFragIdBug){
setTimeout(function(){
al.title=d;
},0);
}
}
function ai(){
d=al.title;
}
function ae(){
if(k.bIsDisabled==true){
return;
}
c=true;
if(k.bHideBrowserText){
aq(true);
}
if(am.attachEvent){
am.attachEvent("onload",af);
}else{
if(!f.c&&(al.addEventListener||am.addEventListener)){
if(f.a&&f.k>=132&&am.addEventListener){
am.addEventListener("load",function(){
setTimeout("sIFR({})",1);
},false);
}else{
if(al.addEventListener){
al.addEventListener("load",af,false);
}
if(am.addEventListener){
am.addEventListener("load",af,false);
}
}
}else{
if(typeof am.onload=="function"){
var ag=am.onload;
am.onload=function(){
ag();
af();
};
}else{
am.onload=af;
}
}
}
if(!f.n||am.location.hash==""){
k.bFixFragIdBug=false;
}else{
ai();
}
}
k.UA=at();
k.bAutoInit=true;
k.bFixFragIdBug=true;
k.replaceElement=j;
k.updateDocumentTitle=ai;
k.appendToClassName=F;
k.setup=ae;
k.debug=function(){
aq(true);
};
k.debug.replaceNow=function(){
ae();
k();
};
k.bIsDisabled=false;
k.bHideBrowserText=true;
return k;
}();
if(typeof sIFR=="function"&&!sIFR.UA.bIsIEMac){
sIFR.setup();
}
if(typeof sIFR=="function"){
(function(){
var j=document;
var h=j.documentElement;
sIFR.removeDecoyClasses=function(){
function a(b){
if(b&&b.className!=null){
b.className=b.className.replace(/\bsIFR-hasFlash\b/,"");
}
}
return function(){
a(h);
a(j.getElementsByTagName("body")[0]);
};
}();
sIFR.preferenceManager={storage:{sCookieId:"sifr",set:function(a){
var b=new Date();
b.setFullYear(b.getFullYear()+3);
j.cookie=[this.sCookieId,"=",a,";expires=",b.toGMTString(),";path=/"].join("");
},get:function(){
var a=j.cookie.match(new RegExp(";?"+this.sCookieId+"=([^;]+);?"));
if(a!=null&&a[1]=="false"){
return false;
}else{
return true;
}
},reset:function(){
var a=new Date();
a.setFullYear(a.getFullYear()-1);
j.cookie=[this.sCookieId,"=true;expires=",a.toGMTString(),";path=/"].join("");
}},disable:function(){
this.storage.set(false);
},enable:function(){
this.storage.set(true);
},test:function(){
return this.storage.get();
}};
if(sIFR.preferenceManager.test()==false){
sIFR.bIsDisabled=true;
sIFR.removeDecoyClasses();
}
sIFR.rollback=function(){
function a(b){
var c,d,e,f,g,h;
var l=parseSelector(b);
var i=l.length-1;
var m=false;
while(i>=0){
c=l[i];
l.length--;
d=c.parentNode;
if(c.getAttribute("sifr")=="true"){
h=0;
while(h<d.childNodes.length){
c=d.childNodes[h];
if(c.className=="sIFR-alternate"){
e=c;
h++;
continue;
}
d.removeChild(c);
}
if(e!=null){
f=e.firstChild;
while(f!=null){
g=f.nextSibling;
d.appendChild(e.removeChild(f));
f=g;
}
d.removeChild(e);
}
if(!sIFR.UA.bIsXML&&sIFR.UA.bUseInnerHTMLHack){
d.innerHTML+="";
}
d.className=d.className.replace(/\bsIFR\-replaced\b/,"");
}
m=true;
i--;
}
return m;
}
return function(k){
named.extract(arguments,{sSelector:function(a){
k=a;
}});
if(k==null){
k="";
}else{
k+=">";
}
sIFR.removeDecoyClasses();
sIFR.bHideBrowserText=false;
if(a(k+"embed")==false){
a(k+"object");
}
};
}();
})();
}


