var ID2OBJECT=new Array();function IGBrowser(){this.ScriptVersion="<SUCCESSFUL_COMPONENT_VERSION>";this.AgentName=navigator.userAgent.toLowerCase();this.IsFirefox=this.AgentName.indexOf("firefox")!=-1;this.MajorVersionNumber=parseInt(navigator.appVersion);this.IsDom=(document.getElementById)?true:false;this.IsSafari=this.AgentName.indexOf("safari")!=-1;this.IsNetscape=(document.layers?true:false);this.IsNetscape4Plus=(this.IsNetscape&&this.MajorVersionNumber>=4)?true:false;this.IsNetscape6=!this.IsSafari&&(this.IsDom&&navigator.appName=="Netscape");this.IsOpera=this.AgentName.indexOf("opera")!=-1;this.IsMac=(this.AgentName.indexOf("mac")!=-1);this.IsIE=(document.all?true:false);this.IsIE4=(document.all&&!this.IsDom)?true:false;this.IsIE4Plus=(this.IsIE&&this.MajorVersionNumber>=4)?true:false;this.IsIE5=(document.all&&this.IsDom)?true:false;this.IsWin=((this.AgentName.indexOf("win")!=-1)||(this.AgentName.indexOf("16bit")!=-1));this.ID="IGB";if((typeof Function!="undefined")&&(typeof Function.prototype!="undefined")&&(typeof Function.apply!="function")){Function.prototype.apply=function(obj,args){var result,fn="ig_apply";while(typeof obj[fn]!="undefined"){fn+=fn}obj[fn]=this;var length=(((ig_csom.isArray(args))&&(typeof args=="object"))?args.length:0);switch(length){case 0:result=obj[fn]();break;default:for(var item=0,params="";item<args.length;item++){if(item!=0){params+=","}params+="args["+item+"]"}result=eval("obj."+fn+"("+params+");");break}this.Dispose(obj[fn]);return result}}this.Dispose=function(obj){if(this.IsIE&&this.IsWin){for(var item in obj){if(typeof(obj[item])!="undefined"&&obj[item]!=null&&!obj[item].tagName&&!obj[item].disposing&&typeof(obj[item])!="string"){try{obj[item].disposing=true;ig_dispose(obj[item])}catch(e1){}}try{delete obj[item]}catch(e2){}}}};this.GetObject=function(id,doc){var i,x;if(!doc){doc=document}if(!(x=doc[id])&&doc.all){x=doc.all[id]}if(!x&&document.getElementById){x=document.getElementById(id)}return x};this.GetHeight=function(obj){var h=0;if(this.IsNetscape){h=(obj.height)?obj.height:obj.clip.height;return h}h=(this.IsOpera)?obj.style.pixelHeight:obj.offsetHeight;return h};this.SetHeight=function(obj,h){if(this.IsFirefox&&document.documentElement){h+="px"}if(this.IsNetscape){if(obj.clip){obj.clip.bottom=h}}else{if(this.IsOpera){obj.style.pixelHeight=h}else{obj.style.height=h}}};this.GetWidth=function(obj){var w=0;if(this.IsNetscape){w=(obj.width)?obj.width:obj.clip.width;return w}w=(this.IsOpera)?obj.style.pixelWidth:obj.offsetWidth;return w};this.SetWidth=function(obj,w){if(this.IsFirefox&&document.documentElement){w+="px"}if(this.IsNetscape){if(obj.clip){obj.clip.right=w}}else{if(this.IsOpera){obj.style.pixelWidth=w}else{obj.style.width=w}}};this.GetX=function(obj){var x=(this.IsNetscape)?obj.left:(this.IsOpera)?obj.style.pixelLeft:obj.offsetLeft;return x};this.SetX=function(obj,x){if(this.IsFirefox&&document.documentElement){x+="px"}(this.IsNetscape)?obj.left=x:(this.IsOpera)?obj.style.pixelLeft=x:obj.style.left=x};this.GetY=function(obj){var y=(this.IsNetscape)?obj.top:(this.IsOpera)?obj.style.pixelTop:obj.offsetTop;return y};this.SetY=function(obj,y){if(this.IsFirefox&&document.documentElement){y+="px"}(this.IsIE||this.IsDom)?obj.style.top=y:(this.IsNetscape)?obj.top=y:obj.style.pixelTop=y};this.GetPageX=function(obj){if(document&&document.getBoxObjectFor){return document.getBoxObjectFor(obj).x}else{if(this.IsNetscape){var x=(obj.pageX)?obj.pageX:obj.x;return x}else{if(this.IsOpera){var x=0;while(eval(obj)){x+=obj.style.pixelLeft;obj=obj.offsetParent}return x}else{var x=0;var relativePos=-1;while(eval(obj)){if(this.IsNetscape6){if(obj.style.position=="relative"){relativePos=x}else{if(obj.style.position=="absolute"){relativePos=-1}}}x+=obj.offsetLeft;obj=obj.offsetParent}if(this.IsNetscape6&&relativePos!=-1){return relativePos}return x}}}};this.GetPageY=function(obj){if(document&&document.getBoxObjectFor){return document.getBoxObjectFor(obj).y}else{if(this.IsNetscape){var y=(obj.pageY)?obj.pageY:obj.y;return y}else{if(this.IsOpera){var y=0;while(eval(obj)){y+=obj.style.pixelTop;obj=obj.offsetParent}return y}else{var y=0;while(eval(obj)){if(this.IsNetscape6){if(obj.style.position=="relative"){relativePos=y}else{if(obj.style.position=="absolute"){relativePos=-1}}}y+=obj.offsetTop;obj=obj.offsetParent}if(this.IsNetscape6&&relativePos!=-1){return relativePos}return y}}}};this.SetPos=function(obj,x,y){this.SetX(obj,parseInt(x));this.SetY(obj,parseInt(y))};this.SetPosRelative=function(obj,x,y){this.SetX(obj,parseInt(this.GetPageX(obj))+parseInt(x));this.SetY(obj,parseInt(this.GetPageY(obj))+parseInt(y))};this.SetZValue=function(obj,z){if(this.IsNetscape){obj.zIndex=z}else{obj.style.zIndex=z}};this.ShowObject=function(obj,disp){(this.IsNetscape)?"":(!disp)?obj.style.display="inline":obj.style.display=disp;(this.IsNetscape)?obj.visibility="show":obj.style.visibility="visible"};this.HideObject=function(obj,disp){(this.IsNetscape)?"":(arguments.length!=2)?obj.style.display="none":obj.style.display=disp;(this.IsNetscape)?obj.visibility="hide":obj.style.visibility="hidden"};this.SetStyle=function(obj,s,v){if(this.IsIE5||this.IsDom){eval("obj.style."+s+" = '"+v+"'")}};this.GetStyle=function(obj,s){if(this.IsIE5||this.IsDom){return eval("obj.style."+s)}};this.AddEventListener=function(o,e,f,c){if(o.addEventListener){o.addEventListener(e,f,c)}else{if(o.attachEvent){o.attachEvent("on"+e,f)}else{eval("o.on"+e+"="+f)}}};this.AddEventListener=function(obj,eventName,callbackFunction,flag){if(obj.addEventListener){obj.addEventListener(eventName,callbackFunction,flag)}else{if(obj.attachEvent){obj.attachEvent("on"+eventName,callbackFunction)}else{eval("obj.on"+eventName+"="+callbackFunction)}}};this.WriteHTML=function(obj,html){if(this.IsNetscape){var doc=obj.document;doc.write(html);doc.close();return false}if(obj.innerHTML){obj.innerHTML=html}};this.SetXClientOverflowSafe=function(obj,x){var objW=IGB.GetWidth(obj);var objR=objW+x;var clientW=IGB.GetClientWidth();if((clientW-objR)>(x-objW-5)){this.SetX(obj,x)}else{this.SetXScrollContainerSafe(obj,x-objW-5)}};this.SetXOverflowSafe=function(obj,x,locx,container){var objR=IGB.GetWidth(obj)+locx;var containerW=IGB.GetWidth(container);if(objR<=containerW){this.SetXScrollContainerSafe(obj,x)}else{this.SetXScrollContainerSafe(obj,x-(objR-containerW))}};this.SetYClientOverflowSafe=function(obj,y){var objH=IGB.GetHeight(obj);var objT=objH+y+23;var clientH=IGB.GetClientHeight();if((clientH-objT)>(y-objH-25)){this.SetYScrollContainerSafe(obj,y)}else{this.SetYScrollContainerSafe(obj,y-objH-25)}};this.SetYOverflowSafe=function(obj,y,locy,container){var objT=IGB.GetHeight(obj)+locy;var containerH=IGB.GetHeight(container);if(objT<=containerH){this.SetYScrollContainerSafe(obj,y)}else{this.SetYScrollContainerSafe(obj,y-(objT-containerH))}};this.GetClientWidth=function(){var w=(this.IsIE)?window.document.body.clientWidth:window.innerWidth;return w};this.GetClientHeight=function(){var w=(this.IsIE)?window.document.body.clientHeight:window.innerHeight;return w};this.SetXScrollContainerSafe=function(obj,x){var hSC=this.GetHScrolledContainer(obj);if(hSC!=null){this.SetXScrollContainerAdjusted(obj,x,hSC)}else{this.SetX(obj,x)}};this.SetYScrollContainerSafe=function(obj,y){var vSC=this.GetVScrolledContainer(obj);if(vSC!=null){this.SetYScrollContainerAdjusted(obj,y,vSC)}else{this.SetY(obj,y)}};this.GetVScrolledContainer=function(obj){if(obj.scrollTop>0&&obj.tagName!="BODY"){return obj}else{if(obj.offsetParent!=null){return this.GetVScrolledContainer(obj.offsetParent)}else{return null}}};this.GetHScrolledContainer=function(obj){if(obj.scrollLeft>0&&obj.tagName!="BODY"){return obj}else{if(obj.offsetParent!=null){return this.GetHScrolledContainer(obj.offsetParent)}else{return null}}};this.SetXScrollContainerAdjusted=function(obj,x,container){this.SetX(obj,x+container.scrollLeft)};this.SetYScrollContainerAdjusted=function(obj,y,container){this.SetY(obj,y+container.scrollTop)};this.InsertHTML=function(obj,html,where){if(this.IsOpera){return}if(obj.insertAdjacentHTML){obj.insertAdjacentHTML(where,html);return}if(this.IsNetscape){this.WriteHTML(obj,html);return}var ref=obj.ownerDocument.createRange();ref.setStartBefore(obj);var fragment=ref.createContextualFragment(html);this.DOMInsertObj(obj,where,fragment)};this.DOMInsertObj=function(obj,where,node){switch(where){case"beforeBegin":obj.parentNode.insertBefore(node,obj);break;case"afterBegin":obj.insertBefore(node,obj.firstChild);break;case"beforeEnd":obj.appendChild(node);break;case"afterEnd":if(obj.nextSibling){obj.parentNode.insertBefore(node,obj.nextSibling)}else{obj.parentNode.appendChild(node)}break}};ID2OBJECT.IGB=this;this.Listener=new Array();this.AddListener=function(type,function_ref){this.Listener[type]=function_ref};this.CurrentX=0;this.CurrentY=0;this.GlobalHandleMouseMove=function(evt){if(this.IsNetscape4Plus){this.CurrentX=evt.pageX;this.CurrentY=evt.pageY}else{if(this.IsNetscape6){this.CurrentX=evt.clientX;this.CurrentY=evt.clientY}else{if(this.IsIE5){this.CurrentX=event.clientX;this.CurrentY=event.clientY}}}IGProcessEventsObjects("onmousemove",this);return false};this.FunctionName=function(f){if(f==null){return"anonymous"}var s=f.toString().match(/function\s*(\w*)/)[1];if((s==null)||(s.length==0)){return"anonymous"}return s};this.DecodeArguments=function(inputString){var splitArray=inputString.split("&");for(i=0;i<splitArray.length;i++){if(decodeURI){splitArray[i]=decodeURI(splitArray[i])}else{splitArray[i]=unescape(splitArray[i])}}return splitArray}}function IGRectangle(b,d,c,a){this.X=b;this.Y=d;this.Width=c;this.Height=a;this.Inside=function(e,f){return(e>=this.X&&f>=this.Y&&e<=(this.X+this.Width)&&f<=(this.Y+this.Height))}}function IGPoint(a,b){this.X=a;this.Y=b}var IGB=new IGBrowser();function IGProcessEventsObjects(type,sender_object){if(eval("sender_object.Listener")){var function_ref=sender_object.Listener[type];if(function_ref!=null){function_ref(type,null,sender_object)}}}function IGProcessEvents(type,sender_element){var sender_object=ID2OBJECT[sender_element.id];IGBubbleEvent(type,sender_element,sender_object);if(eval("sender_object.Listener")){var function_ref=sender_object.Listener[type];if(function_ref!=null){function_ref(type,sender_element,sender_object)}}}function IGBubbleEvent(type,sender_element,sender_object){if(eval("sender_object."+type)){if(eval("sender_object."+type+"(sender_element, sender_object)")){var parent_ref=sender_object.Parent;if(parent_ref!=null){IGBubbleEvent(type,sender_element,parent_ref)}}}}var RepeatingDelegate=null;var DelegateParameter=null;var DelegateeObject=null;var TimerId=null;function GetDelay(a){if(a==-1){a=70}else{a-=5;if(a<5){a=5}}return a}function RepeatingHandler(a){a=GetDelay(a);TimerId=setTimeout("RepeatingHandler("+a+")",a);if(RepeatingDelegate!=null){RepeatingDelegate.apply(DelegateeObject,DelegateParameter)}}function Repeating(a,b,c,d){if(a==true){RepeatingDelegate=b;DelegateParameter=c;DelegateeObject=d;RepeatingHandler(-1)}else{if(TimerId){clearTimeout(TimerId);TimerId=null}RepeatingDelegate=null;DelegateParameter=null}}function Fader(){ID2OBJECT[this.ID]=this;this.Parent=null;this.Listener=new Array();this.AddListener=function(b,a){};this.FaderOpacity=0;this.FaderStep=function(c,b,a,d){if((this.FaderOpacity<=a)&&(this.FaderOpacity>=b)){this.FaderOpacity+=d;if(IGB.IsIE4||IGB.IsIE5){c.style.filter="alpha(opacity="+this.FaderOpacity+")"}if(IGB.IsNetscape6){c.style.MozOpacity=this.FaderOpacity/100}}else{Repeating(false)}};this.Start=function(c,b,a,d){this.FaderOpacity=b;Repeating(true,this.FaderStep,[c,b,a,d],this)};this.End=function(){Repeating(false)}}function Bounce(evt,id,func_name,paramArray){var this_ref=ID2OBJECT[id];var fn=func_name;if(this_ref){if(fn){fn=func_name}else{fn="on"+evt.type}eval("this_ref."+fn+"(evt, id, paramArray)")}}function IGWindowViewer(e,b,a,d,c){this.SourceBounds=d;this.DestBounds=c;this.ImageId=b;this.VUId=a;ID2OBJECT[this.ID]=this;this.Parent=null;this.HTML="";this.Listener=new Array();this.AddListener=function(g,f){};this.MoveBy=function(f,g){this.SourceBounds.X+=f;this.SourceBounds.Y+=g;this.Render()};this.Render=function(){var k=IGB.GetObject(this.ImageId);var g=IGB.GetObject(this.VUId);IGB.SetX(k,-this.SourceBounds.X);IGB.SetY(k,-this.SourceBounds.Y);var f=this.SourceBounds.Width;var j=this.SourceBounds.Height;if(IGB.IsFirefox&&document.documentElement){f+="px";j+="px"}IGB.SetStyle(g,"width",f);IGB.SetStyle(g,"height",j);IGB.SetStyle(g,"overflow","hidden");IGB.SetX(g,this.DestBounds.X);IGB.SetY(g,this.DestBounds.Y)}}function IGCrossHair(b,a){this.ID=b;this.ToggleOnClick=a;this.Visible=false;this.SpanImageObject=null;this.HairHorizontal=null;this.HairVertical=null;ID2OBJECT[this.ID]=this;this.Parent=null;this.HTML="";this.Listener=new Array();this.AddListener=function(d,c){};this.Render=function(c){var e=0,g=0,f=document.getElementById(this.Parent.ID);if(IGB.IsFirefox&&f&&this.HairHorizontal.offsetParent!=f&&this.HairHorizontal.offsetParent!=f.offsetParent){var d=document.getBoxObjectFor(f);if(d){e=d.x;g=d.y}}IGB.SetX(this.HairHorizontal,c.X+e);IGB.SetY(this.HairVertical,c.Y+g);IGB.SetWidth(this.HairHorizontal,c.Width);IGB.SetHeight(this.HairHorizontal,1);IGB.SetHeight(this.HairVertical,c.Height);IGB.SetWidth(this.HairVertical,1)};this.Update=function(c,d){if(this.Visible==true){IGB.ShowObject(this.HairHorizontal);IGB.ShowObject(this.HairVertical)}else{IGB.HideObject(this.HairHorizontal);IGB.HideObject(this.HairVertical)}if(c&&d){IGB.SetXScrollContainerSafe(this.HairVertical,c);IGB.SetYScrollContainerSafe(this.HairHorizontal,d)}}}function IGScrollBar(g,e,a,d,c,b,f){this.Orientation=b==null?"horizontal":b;this.ID=g;this.UniqueID=f;this.ImageURL=c;this.Width=e;this.Height=a;this.ScrollerLen=d;this.UseImageFromId=this.ID;this.Location=new IGPoint(0,0);this.Minimum=0;this.Maximum=100;this.Value=0;this.SmallChange=5;this.LargeChange=15;ID2OBJECT[this.UniqueID]=this;this.Parent=null;this.HTML="";this.Listener=new Array();this.Where=null;this.AddListener=function(j,h){this.Listener[j]=h};this.SetLocation=function(){var l;if(this.Where){l=IGB.GetObject(this.Where)}if(!l){return}var j=0,n=0,m=document.getElementById(this.Parent.ID),o=document.getElementById(this.Parent.ID+"_table");if(IGB.IsFirefox&&m&&o&&l.offsetParent!=m&&l.offsetParent!=m.offsetParent){if(o.offsetParent==l.offsetParent){var h=document.getBoxObjectFor(m);j=h.x;n=h.y}else{var k=o.offsetParent;while(k&&k!=l.offsetParent){j+=k.offsetLeft;n+=k.offsetTop;k=k.offsetParent}}}if(this.Location){IGB.SetX(l,this.Location.X+j);IGB.SetY(l,this.Location.Y+n)}};this.Render=function(h){this.Where=h;var l=IGB.GetObject(this.Where);if(l==null){return}this.SetLocation();if((this.Orientation!=null)&&(this.Orientation=="vertical")){var k=this.Height-2*this.Width-this.ScrollerLen;this.HTML="<table OnMouseWheel=ScrollbarMouseWheel('"+this.UniqueID+"') id='"+this.ID+"' width="+this.Width+" height="+this.Height+" border=0 cellpadding=0 cellspacing=0 style='table-layout:fixed'>";this.HTML+="<tr>";this.HTML+="<td valign=top>";this.HTML+="<img						width="+this.Width+"px height="+this.Width+"px			src='"+this.ImageURL+"/"+this.UseImageFromId+"_top_.jpg'		OnMouseOver=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_top_over.jpg';\"		OnMouseOut=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_top_.jpg';\"		OnMouseDown=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_top_down.jpg'; ScrollItV('"+this.UniqueID+"', -"+this.SmallChange+"); Repeating(true, ScrollItV, ['"+this.UniqueID+"', -"+this.SmallChange+']); "	OnMouseUp="this.src=\''+this.ImageURL+"/"+this.UseImageFromId+"_top_.jpg';\" ><br>";this.HTML+="<img id='"+this.UniqueID+"_1'	width="+this.Width+"px height=1px						src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_v_.jpg'		OnMouseOver=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_v_over.jpg';\"	OnMouseOut=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_v_.jpg';\"	OnMouseDown=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_v_down.jpg'; ScrollItV('"+this.UniqueID+"', -"+this.LargeChange+"); Repeating(true, ScrollItV, ['"+this.UniqueID+"', -"+this.LargeChange+']);"	OnMouseUp="this.src=\''+this.ImageURL+"/"+this.UseImageFromId+"_back_v_.jpg';\" ><br>";this.HTML+="<img						width="+this.Width+"px height="+this.ScrollerLen+"px	src='"+this.ImageURL+"/"+this.UseImageFromId+"_scroll_v_.jpg'	OnMouseOver=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_scroll_v_over.jpg';\"	OnMouseOut=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_scroll_v_.jpg';\"	OnMouseDown=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_scroll_v_down.jpg'; EngageObject('"+this.UniqueID+"');\"																						OnMouseUp=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_scroll_v_.jpg';\" ><br>";this.HTML+="<img id='"+this.UniqueID+"_3'	width="+this.Width+"px height="+k+"px				src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_v_.jpg'		OnMouseOver=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_v_over.jpg';\"	OnMouseOut=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_v_.jpg';\"	OnMouseDown=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_v_down.jpg'; ScrollItV('"+this.UniqueID+"', "+this.LargeChange+"); Repeating(true, ScrollItV, ['"+this.UniqueID+"', "+this.LargeChange+']); "	OnMouseUp="this.src=\''+this.ImageURL+"/"+this.UseImageFromId+"_back_v_.jpg';\" ><br>";this.HTML+="<img						width="+this.Width+"px height="+this.Width+"px			src='"+this.ImageURL+"/"+this.UseImageFromId+"_bottom_.jpg'		OnMouseOver=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_bottom_over.jpg';\"	OnMouseOut=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_bottom_.jpg';\"	OnMouseDown=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_bottom_down.jpg'; ScrollItV('"+this.UniqueID+"', "+this.SmallChange+"); Repeating(true, ScrollItV, ['"+this.UniqueID+"', "+this.SmallChange+']); "	OnMouseUp="this.src=\''+this.ImageURL+"/"+this.UseImageFromId+"_bottom_.jpg';\" >";this.HTML+="</td></tr>";this.HTML+="</table>"}else{var k=this.Width-2*this.Height-this.ScrollerLen;this.HTML="<table OnMouseWheel=ScrollbarMouseWheel('"+this.UniqueID+"') id='"+this.UniqueID+"' width="+this.Width+" height="+this.Height+" border=0 cellpadding=0 cellspacing=0 style='table-layout:fixed'>";this.HTML+="<tr>";this.HTML+="<td  width="+this.Height+"px		height="+this.Height+"px>";this.HTML+="<img width="+this.Height+"px		height="+this.Height+"px src='"+this.ImageURL+"/"+this.UseImageFromId+"_left_.jpg'		OnMouseOver=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_left_over.jpg';\"		OnMouseOut=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_left_.jpg';\"		OnMouseUp=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_left_.jpg';\"		OnMouseDown=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_left_down.jpg'; ScrollItH('"+this.UniqueID+"', -"+this.SmallChange+");		Repeating(true, ScrollItH, ['"+this.UniqueID+"', -"+this.SmallChange+']); " ></td>';this.HTML+="<td  width=1px					height="+this.Height+"px id='"+this.UniqueID+"_1'>";this.HTML+="<img width=1px					height="+this.Height+"px id='"+this.UniqueID+"_2'		src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_h_.jpg'		OnMouseOver=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_h_over.jpg';\"	OnMouseOut=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_h_.jpg';\"	OnMouseUp=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_h_.jpg';\"		OnMouseDown=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_h_down.jpg'; ScrollItH('"+this.UniqueID+"', -"+this.LargeChange+");	Repeating(true, ScrollItH, ['"+this.UniqueID+"', -"+this.LargeChange+']);" ></td>';this.HTML+="<td  width="+this.ScrollerLen+"px height="+this.Height+"px>";this.HTML+="<img width="+this.ScrollerLen+"px height="+this.Height+"px id='"+this.UniqueID+"_engagable' src='"+this.ImageURL+"/"+this.UseImageFromId+"_scroll_h_.jpg'	OnMouseOver=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_scroll_h_over.jpg';\" OnMouseOut=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_scroll_h_.jpg';\"  OnMouseUp=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_scroll_h_.jpg';\"	OnMouseDown=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_scroll_h_down.jpg'; EngageObject('"+this.UniqueID+"');\"   ></td>";this.HTML+="<td  width="+k+"px				height="+this.Height+"px id='"+this.UniqueID+"_3'>";this.HTML+="<img width="+k+"px				height="+this.Height+"px id='"+this.UniqueID+"_4'		src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_h_.jpg'		OnMouseOver=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_h_over.jpg';\"	OnMouseOut=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_h_.jpg';\"	OnMouseUp=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_h_.jpg';\"		OnMouseDown=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_back_h_down.jpg'; ScrollItH('"+this.UniqueID+"', "+this.LargeChange+");		Repeating(true, ScrollItH, ['"+this.UniqueID+"', "+this.LargeChange+']); " ></td>';this.HTML+="<td  width="+this.Height+"px		height="+this.Height+"px>";this.HTML+="<img width="+this.Height+"px		height="+this.Height+"px						src='"+this.ImageURL+"/"+this.UseImageFromId+"_right_.jpg'		OnMouseOver=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_right_over.jpg';\"	OnMouseOut=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_right_.jpg';\"		OnMouseUp=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_right_.jpg';\"		OnMouseDown=\"this.src='"+this.ImageURL+"/"+this.UseImageFromId+"_right_down.jpg'; ScrollItH('"+this.UniqueID+"', "+this.SmallChange+");		Repeating(true, ScrollItH, ['"+this.UniqueID+"', "+this.SmallChange+']); " ></td>';this.HTML+="</tr>";this.HTML+="</table>"}if(l.style!=null){l.style.height=this.Height;l.style.width=this.Width}IGB.InsertHTML(l,this.HTML,"afterBegin");this.SetValue(this.Value);var j=this.GetIGShared();if(this.Orientation=="vertical"&&IGB.GetHeight(IGB.GetObject(this.UniqueID+"_3"))==0&&j&&j.addTabListener){if(j==top.ig_shared&&!top.ID2OBJECT){top.ID2OBJECT=ID2OBJECT}this._tabListener="var obj = ID2OBJECT['"+this.ID+"']; if (obj && obj.InitSize) obj.InitSize();";j.addTabListener(this._tabListener)}};this.GetIGShared=function(){if(typeof(ig_shared)!="undefined"&&ig_shared){return ig_shared}else{if(top.ig_shared){return top.ig_shared}}return null};this.InitSize=function(l){if(this.Orientation!=null&&this.Orientation=="vertical"){var j=this.Height-2*this.Width-this.ScrollerLen;var k=IGB.GetObject(this.UniqueID+"_3");IGB.SetHeight(k,j);var h=this.GetIGShared();if(IGB.GetHeight(k)>0&&h&&h.removeTabListener){h.removeTabListener(this._tabListener);this._tabListener=null}}};this.SetValue=function(k){this.Value=k;var h=this.UniqueID;var r=IGB.GetObject(h+"_1");var q=IGB.GetObject(h+"_2");var p=IGB.GetObject(h+"_3");var o=IGB.GetObject(h+"_4");var l=0;var j=0;if((this.Orientation!=null)&&(this.Orientation=="vertical")){l=IGB.GetHeight(r);j=IGB.GetHeight(p)}else{l=IGB.GetWidth(r);j=IGB.GetWidth(p)}var n=l+j-1;if(this.Maximum!=this.Minimum){nuwid1=(k-this.Minimum)*(n-1)/(this.Maximum-this.Minimum)+1}else{nuwid1=n}if(nuwid1>n){nuwid1=n}if(nuwid1<1){nuwid1=1}var m=n-nuwid1;if(m>n){m=n}if(m<1){m=1}if((this.Orientation!=null)&&(this.Orientation=="vertical")){IGB.SetHeight(r,nuwid1);IGB.SetHeight(p,m)}else{IGB.SetWidth(r,nuwid1);IGB.SetWidth(q,nuwid1);IGB.SetWidth(p,m);IGB.SetWidth(o,m)}}}function ScrollItH(a,k){var n=IGB.GetObject(a+"_1");var m=IGB.GetObject(a+"_2");var l=IGB.GetObject(a+"_3");var j=IGB.GetObject(a+"_4");var d=IGB.GetWidth(n);var b=IGB.GetWidth(l);var h=d+b-1;var g=d+k;if(g>h){g=h}if(g<1){g=1}var e=b-k;if(e>h){e=h}if(e<1){e=1}if(g==1||e==1){Repeating(false)}IGB.SetWidth(n,g);IGB.SetWidth(m,g);IGB.SetWidth(l,e);IGB.SetWidth(j,e);var f=ID2OBJECT[a];f.Value=f.Minimum+((g-1)/(h-1))*(f.Maximum-f.Minimum);var c=f.Listener.scroll;if(c){c.apply(this,["scroll",IGB.GetObject(a),f])}}function ScrollItV(a,j){var l=IGB.GetObject(a+"_1");var k=IGB.GetObject(a+"_3");var d=IGB.GetHeight(l);var b=IGB.GetHeight(k);var h=d+b-1;var g=d+j;if(g>h){g=h}if(g<1){g=1}var e=b-j;if(e>h){e=h}if(e<1){e=1}if(g==1||e==1){Repeating(false)}IGB.SetHeight(l,g);IGB.SetHeight(k,e);var f=ID2OBJECT[a];f.Value=f.Minimum+((g-1)/(h-1))*(f.Maximum-f.Minimum);var c=f.Listener.scroll;if(c){c.apply(this,["scroll",IGB.GetObject(a),f])}}var EngagedObject=null;var OldMouseDown;var OldMouseMove;var OldMouseUp;var MouseDownX,MouseDownY;function EngageObject(a){EngagedObject=ID2OBJECT[a]}function ReleaseObject(){EngagedObject=null}function NewMouseDown(a){if(OldMouseDown){OldMouseDown(a)}if(IGB.IsNetscape6){MouseDownX=a.pageX;MouseDownY=a.pageY;if(a&&a.target&&a.target.id&&(a.target.id.indexOf("engagable")>-1)){return false}}else{MouseDownX=window.event.clientX;MouseDownY=window.event.clientY}return true}function NewMouseMove(b){if(OldMouseMove){OldMouseMove(b)}if(EngagedObject!=null){var a=0;var c=EngagedObject.UniqueID?EngagedObject.UniqueID:EngagedObject.ID;if((EngagedObject.Orientation!=null)&&(EngagedObject.Orientation=="vertical")){if(IGB.IsNetscape6){a=(b.pageY-MouseDownY);MouseDownY=b.pageY}else{a=(window.event.clientY-MouseDownY);MouseDownY=window.event.clientY}ScrollItV(c,a)}else{if(IGB.IsNetscape6){a=(b.pageX-MouseDownX);MouseDownX=b.pageX}else{a=(window.event.clientX-MouseDownX);MouseDownX=window.event.clientX}ScrollItH(c,a)}return false}return true}function NewMouseUp(a){Repeating(false);if(OldMouseUp){OldMouseUp(a)}ReleaseObject();return true}function ScrollbarMouseWheel(c){var b=ID2OBJECT[c];var a=0;if(event.wheelDelta>=120){a=-10}else{if(event.wheelDelta<=-120){a=+10}}if((b.Orientation!=null)&&(b.Orientation=="vertical")){ScrollItV(c,a)}else{ScrollItH(c,a)}return false}function InitilizeScrollbar(){if(OldMouseDown==null&&IGB.FunctionName(document.OnMouseDown)!="NewMouseDown"&&IGB.FunctionName(document.onmousedown)!="NewMouseDown"){OldMouseDown=document.onmousedown}if(OldMouseUp==null&&IGB.FunctionName(document.OnMouseUp)!="NewMouseUp"&&IGB.FunctionName(document.onmouseup)!="NewMouseUp"){OldMouseUp=document.onmouseup}if(OldMouseMove==null&&IGB.FunctionName(document.OnMouseMove)!="NewMouseMove"&&IGB.FunctionName(document.onmousemove)!="NewMouseMove"){OldMouseMove=document.onmousemove}document.onmousedown=NewMouseDown;document.onmouseup=NewMouseUp;document.onmousemove=NewMouseMove;if(IGB.IsNetscape6){document.captureEvents(Event.MOUSEDOWN|Event.MOUSEMOVE|Event.MOUSEUP)}}function IGUltraChart(c,a,b){this.ID=c;this.ImageUrl=a;this.UniqueID=b;this.EnableTooltipFading=false;this.EventData=null;this.TooltipData=null;this.RowCount=0;this.ColumnCount=0;this.TooltipDisplay=0;this.EnableCrossHair=false;this.EnableServerEvent=false;this.Section508Compliant=false;ID2OBJECT[this.ID]=this;this.Parent=null;this.HTML="";this.Listener=new Array();this.DEBUG=false;this.AddListener=function(e,d){this.Listener[e]=d};this.payloadHandler=null;this.SB1=null;this.SB2=null;this.igWindowVuer=null;this.iGCrossHair=null;this.XhairBounds=null;this.TooltipFader=null;this.TooltipVisible=false;this.CreateComponents=function(m){var n=this.UniqueID.lastIndexOf(":");var d;if(n!=-1){d=this.UniqueID.substring(n+1,this.UniqueID.length)}else{d=this.UniqueID}if(d.indexOf("$")!=-1){var j=d.split("$");if(j.length>0){d=j[j.length-1]}}this.SB1=new IGScrollBar(d+"_SB1",m[2],m[3],30,this.ImageUrl,"",this.UniqueID+"_SB1");this.SB2=new IGScrollBar(d+"_SB2",m[9],m[10],30,this.ImageUrl,"vertical",this.UniqueID+"_SB2");this.igWindowVuer=new IGWindowViewer(this.ID+"_igWindowVuer",this.ID+"_ScrollImage",this.ID+"_igWindowVuer");this.iGCrossHair=new IGCrossHair(this.ID+"_iGCrossHair");this.TooltipFader=new Fader();this.SB1.Parent=this;this.SB2.Parent=this;this.igWindowVuer.Parent=this;this.iGCrossHair.Parent=this;var g=IGB.GetObject(this.ID+"_BaseImage");var h=IGB.GetObject(this.ID+"_ScrollImage");var o=IGB.GetObject(this.ID+"_table");this.iGCrossHair.SpanImageObject=g;this.iGCrossHair.HairHorizontal=IGB.GetObject(this.ID+"_HairHorizontal");this.iGCrossHair.HairVertical=IGB.GetObject(this.ID+"_HairVertical");this.iGCrossHair.Visible=this.EnableCrossHair;if(IGB.IsNetscape6&&o.offsetParent&&o.offsetParent.tagName!="BODY"){var e=o.offsetLeft;var l=o.offsetTop;if(m[1]){m[1].X+=e;m[1].Y+=l}var k=o.offsetParent.style.position!="absolute"||(this.iGCrossHair.HairHorizontal.offsetParent&&this.iGCrossHair.HairHorizontal.offsetParent.tagName!="BODY");if(k){if(m[0]){m[0].X+=e;m[0].Y+=l}}}if(document.documentElement&&IGB.IsIE&&o&&o.parentElement&&o.parentElement.parentElement&&o.parentElement.parentElement.style&&!h){var f=o.parentElement.parentElement.style.overflow;if(f&&f!=""&&f.toLowerCase()!="visible"&&g&&g.parentElement&&g.parentElement.style){o.style.position="";g.parentElement.style.position=""}}this.igWindowVuer.SourceBounds=m[4];this.igWindowVuer.DestBounds=m[5];this.XhairBounds=m[0];this.SB1.Location=m[1];this.SB1.AddListener("scroll",this.SB1_Scroll);this.SB1.Minimum=m[6];this.SB1.Maximum=m[7];this.SB1.Value=m[6];this.SB2.Location=m[8];this.SB2.AddListener("scroll",this.SB2_Scroll);this.SB2.Minimum=m[11];this.SB2.Maximum=m[12];this.SB2.Value=m[11]};this.Render=function(g){if(IGB.IsNetscape6&&g[5]){var f=IGB.GetObject(this.ID+"_table");if(this.iGCrossHair.HairHorizontal.offsetParent&&this.iGCrossHair.HairHorizontal.offsetParent.tagName!="BODY"){var d=f.offsetLeft;var e=f.offsetTop;g[5].X+=d;g[5].Y+=e}}if(g[0]){this.SB1.Render(this.UniqueID+"_SB1_Location")}if(g[1]){this.SB2.Render(this.UniqueID+"_SB2_Location")}if(g[2]){this.igWindowVuer.Render()}if(g[3]){this.iGCrossHair.Render(g[5])}if(g[4]){IGB.ShowObject(IGB.GetObject(this.ID+"_ScrollImage"))}};this.SB1_Scroll=function(d,g,f){f.Parent.igWindowVuer.SourceBounds.X=parseInt(f.Value);f.Parent.igWindowVuer.Render();var e=f.Parent.Listener[d];if(e!=null){e.apply(f.Parent,[f])}};this.SB2_Scroll=function(d,g,f){f.Parent.igWindowVuer.SourceBounds.Y=parseInt(f.Value);f.Parent.igWindowVuer.Render();var e=f.Parent.Listener[d];if(e!=null){e.apply(f.Parent,[f])}};this.onmousewheel=function(d,e){if(d.wheelDelta>=120){this.igWindowVuer.MoveBy(-10,0)}else{if(d.wheelDelta<=-120){this.igWindowVuer.MoveBy(+10,0)}}this.SB1.SetValue(this.igWindowVuer.SourceBounds.X)};this.onmousemove=function(r,t){var q,o;var j=this.iGCrossHair.Visible;var k=IGB.GetObject(this.ID+"_BaseImage");var n=IGB.GetObject(this.ID+"_IGTooltipBody");if(!n){if(!(n=this.cloneTooltip())){return}}if(IGB.IsNetscape6){q=r.pageX;o=r.pageY}else{q=window.event.clientX+document.body.scrollLeft;o=window.event.clientY+document.body.scrollTop;if(IGB.IsMac&&IGB.IsIE){q-=10;o-=15}}var v=q;var s=o;var d=n.offsetParent;var w=d.tagName=="BODY"||d.tagName=="HTML";if(!w){q-=IGB.GetPageX(k);o-=IGB.GetPageY(k);if(IGB.IsFirefox&&n.offsetParent!=k.offsetParent){var u=k.offsetParent,z=0,B=0,m=0;while(u!=n.offsetParent){B+=u.offsetLeft;m+=u.offsetTop;u=u.offsetParent;if(z++>50){B=0;m=0}}q+=B;o+=m}}var A=IGB.GetObject(this.ID+"_IGTooltip");var d=A.offsetParent;var w=d.tagName=="BODY"||d.tagName=="HTML";if(!w){v-=IGB.GetPageX(k);s-=IGB.GetPageY(k);if(IGB.IsFirefox&&A.offsetParent!=k.offsetParent){var u=k.offsetParent,z=0,B=0,m=0;while(u!=A.offsetParent){B+=u.offsetLeft;m+=u.offsetTop;u=u.offsetParent;if(z++>50){B=0;m=0}}v+=B;s+=m}}if(this.EnableCrossHair){var B=0,m=0;if(IGB.IsFirefox&&this.iGCrossHair.HairHorizontal.offsetParent!=k.offsetParent&&w){var h=document.getBoxObjectFor(k);if(h){B-=h.x;m-=h.y}}var l=IGB.GetHScrolledContainer(this.iGCrossHair.HairHorizontal);var f=IGB.GetVScrolledContainer(this.iGCrossHair.HairHorizontal);B+=l?l.scrollLeft:0;m+=f?f.scrollTop:0;this.iGCrossHair.Visible=this.XhairBounds.Inside(v+B,s+m);this.iGCrossHair.Update(v-3,s-3);if(this.iGCrossHair.Visible){var g=this.Listener.crosshairmove;if(g!=null){g.apply(this,[v-3,s-3])}}}if(j!=this.iGCrossHair.Visible){if(j){var g=this.Listener.hidecrosshair;if(g!=null){g.apply(this,[q-3,o-3])}}else{var g=this.Listener.showcrosshair;if(g!=null){g.apply(this,[q-3,o-3])}}}q+=15;o+=20;v+=18;s+=23;var e=this.TooltipOverflow?this.TooltipOverflow:n.getAttribute("igTtOf");switch(e){case"None":IGB.SetXScrollContainerSafe(n,q);IGB.SetYScrollContainerSafe(n,o);break;case"ClientArea":IGB.SetXClientOverflowSafe(n,q);IGB.SetYClientOverflowSafe(n,o);break;case"ChartArea":IGB.SetXOverflowSafe(n,q,v,k);IGB.SetYOverflowSafe(n,o,s,k);break}if(this.TooltipVisible){IGB.ShowObject(n)}};this.cloneTooltip=function(){var e=IGB.GetObject(this.ID+"_IGTooltip");var d=e.cloneNode(true);d.id=d.id.replace("_IGTooltip","_IGTooltipBody");d.style.zIndex=60000;if(document.readyState=="interactive"){return}document.body.appendChild(d);return d};this.ShowTooltip=function(d,k,g){var j=IGB.GetObject(this.ID+"_IGTooltipBody");if(!j){if(!(j=this.cloneTooltip())){return}}var h="";var e=g[4]+"_"+g[1]+"_"+g[2];if(this.DEBUG){window.status=e}if(this.TooltipData!=null){h=this.TooltipData[e]}IGB.WriteHTML(j,"<nobr>"+h+"</nobr>");if(this.TooltipDisplay==2){IGB.ShowObject(j)}this.TooltipVisible=true;if(this.EnableTooltipFading){this.TooltipFader.End();this.TooltipFader.Start(j,0,100,20)}var f=this.Listener.showtooltip;if(f!=null){f.apply(this,[h,j])}};this.HideTooltip=function(d,k,g){if(!this.TooltipVisible){return}var j=IGB.GetObject(this.ID+"_IGTooltipBody");var h="";var e=g[4]+"_"+g[1]+"_"+g[2];if(this.TooltipData!=null){h=this.TooltipData[e]}this.TooltipFader.End();j.style.visibility="hidden";this.TooltipVisible=false;var f=this.Listener.hidetooltip;if(f!=null){f.apply(this,[h,j])}};this.onallevent=function(d,j,g){var f=this.Listener[d.type];if(f!=null){var e=IGB.DecodeArguments(this.EventData[g[4]+"_"+g[1]+"_"+g[2]]);f.apply(this,[this,e[0],e[1],e[2],e[3],e[4],d.type,g[4]])}if(d.type=="mouseover"&&this.TooltipDisplay==1){this.ShowTooltip(d,j,g)}if(d.type=="mousemove"&&(IGB.IsNetscape6||IGB.IsMac)){this.onmousemove(d)}else{if(d.type=="click"&&this.TooltipDisplay==2){this.ShowTooltip(d,j,g)}else{if(d.type=="mouseout"){this.HideTooltip(d,j,g)}}}if(((d.type=="click")||(d.type=="dblclick"))&&(this.EnableServerEvent)){var h=this.EventData[g[4]+"_"+g[1]+"_"+g[2]];h+="&"+d.type;if(this.DEBUG){window.status="RawData="+h}__doPostBack(this.UniqueID,h)}}}IGB.AddEventListener(window,"resize",igchart_onWindowResize);function igchart_onWindowResize(){var a;for(a in ID2OBJECT){if(ID2OBJECT[a]&&ID2OBJECT[a].SetLocation){ID2OBJECT[a].SetLocation()}}};