function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v3.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
};
<!-- 

var preloadFlag = false;
function FS5_PreloadImages(){
	var d=document;
	if(d.images){
		if(!d.FS5_p) {
			 d.FS5_p=new Array();
		}
		var i
		var j=d.FS5_p.length
		var a=FS5_PreloadImages.arguments;
		for (i=0; i<a.length; i++){
			if (a[i].indexOf("#")!=0){ 
				d.FS5_p[j]=new Image; d.FS5_p[j++].src=a[i];
			}
		}
	}
	preloadFlag = true;
}

// -->;
<!--
function addIEFavorite(firmname) {
	if (window.external) {
           var title
           var firm_name = firmname
           var meta = document.getElementsByTagName('meta')
           for(var i=0; i<meta.length; i++) {
                       var meta_name = meta[i].getAttribute('name').toLowerCase()
                       if (meta_name == 'title') title = meta[i].getAttribute('content')
           }
           if (title == null) {
                       external.AddFavorite(location.href, firm_name)
           }
           else {
                       external.AddFavorite(location.href, firm_name+' - '+title)
           }
	}
	else {
           alert("This feature is not supported in your browser. Please use your regular bookmarks menu.");

	}
}
// -->
;
/*
 ValidateMain(form_object)
 USAGE:
 <input type="hidden" name="_^[A][--+B]" value="[C]"/>

 [A]: A valid javascript condition where 'f' is predefined to be the field object
 preceeding the hidden condition field, ge('name or id') returns given field object,
 and rc('name or id') returns string of 1s and 0s representing the checked or
 unchecked state of a group of fields with the given name or id
 
 [--+B]: Optional.  Defines the field name or id that should receive the focus
 after the pop up message.  By default, the field preceeding the hidden
 condition field receives the focus, however this may not be desirable
 
 [C]: Pop up message
 
 ValidateShort(form_object) and BufferFields()
 USAGE:
 Use this pair of functions to eliminate default text in a field upon submission.
 ValidateShort replaces ValidateMain for this purpose. It additionally 
 predefines 'iv' as the initial value of the field preceeding the hidden condition
 field for use in the condition 
 
 NOTE: iv is defined only for the field preceeding the hidden condition field,
 therefore, consecutive condition fields aren't supported for use with this var
 
 Buffer fields should be placed on the page after all forms that use ValidateShort
 
*/

var arrFormFields, iOffset=0;

//Buffer up to one hundred fields from forms on page
var arrFormFields=Array(100);
for(i=0;i<100;i++)
	arrFormFields[i]=Array(2);

//Validation code-------------------------------------------
function ValidateMain(frm){  
	var i, k=0, f, iv, focus_value, value_pair, condition_value;
	e=frm.elements;
	
	for(i=0;i<e.length;i++){
		iv=getFieldByIndex(frm, i-1); 

		if(e[i].name!=null){		
			if(e[i].name.substring(0,2)=='_^'){
				f=e[k];
			
				value_pair = e[i].name.split('--+');
				
				focus_value='';
				if(value_pair.length>1){
					focus_value=value_pair[1];		
					condition_value = value_pair[0].substring(2,value_pair[0].length);
				}
				else
					condition_value=e[i].name.substring(2,e[i].name.length);
				
				//alert(condition_value);
				
				if(eval(condition_value)){
					alert(e[i].value);
					
					if(focus_value!=''){
						focus_value = ge(focus_value);		
						focus_value.focus();
						if(focus_value.type!='select-one')		
							focus_value.select();
					}
					else{
						e[k].focus();
						if(e[k].type!='select-one')
							e[k].select();
					}				
					
					return false;
				} 
			}
			else
				k=i;   
		}  
	}
	
	return true;
}
 
function ge(sIdName){
 var j=0;
 for(j=0;j<e.length;j++)
  if(e[j].id==sIdName||e[j].name==sIdName)
   return e[j];
 
 alert('ge: No name or id "'+sIdName+'"');
 return e[0]; 
}
 
function rc(sIdName){
 var j=0,sBString='';
 for(j=0;j<e.length;j++)
  if(e[j].id==sIdName||e[j].name==sIdName)
   sBString+=(e[j].checked)?'1':'0';   
  
  if(sBString=='')
   alert('rc: No name or id "'+sIdName+'"');
  return sBString;
  
}
//Validation code-----------------------------------	



//Buffer form index, field name, and field value into arrFormFields for all forms in document
function bufferFields(){
	var i,j;
	for(i=0;i<document.forms.length;i++){			
		for(j=0;j<document.forms[i].elements.length;j++){									
			arrFormFields[iOffset][0]=i;
			arrFormFields[iOffset][1]=document.forms[i].elements[j].name;
			arrFormFields[iOffset][2]='';
			
			if(document.forms[i].elements[j].type=='text' || document.forms[i].elements[j].type=='textarea'){
				arrFormFields[iOffset][2]=document.forms[i].elements[j].value;				
			}	
	
			//alert(arrFormFields[iOffset][0] + ', ' + arrFormFields[iOffset][1] + ', ' + arrFormFields[iOffset][2] + ', ' + iOffset);
			iOffset++;
		}		
	}
	return 0;
}
//Get field value from form object and field name in the arrFormFields array
function getFieldByName(frm, fieldName){
	var i,formIndex = getFormIndex(frm);
	
	for(i=0;i<iOffset;i++)
		if(arrFormFields[i][0]==formIndex&&arrFormFields[i][1]==fieldName){
			return arrFormFields[i][2];
		}
			
	return 0;
}
//Get field value from form object and element index in the arrFormFields array
function getFieldByIndex(frm, index){
	var i,j=-1,formIndex = getFormIndex(frm);

	for(i=0;i<iOffset;i++){
		if(arrFormFields[i][0]==formIndex&&j==-1)		
			j=i;
		
		if(i-j==index&&j!=-1)
			return arrFormFields[i][2];
	}
			
	return 0;
}

//Set value of all fileds that still have default values to null string in a given form
function clearDefaultValues(frm){
	var i;
	for(i=0;i<frm.elements.length;i++)
		if(frm.elements[i].value==getFieldByIndex(frm,i))
			frm.elements[i].value='';

	return true;
}

//Use this to validate short forms and clear default values
function ValidateShort(frm){
	
	if(ValidateMain(frm))
		return clearDefaultValues(frm);
	
	return false;

}

//Get form index for given form
function getFormIndex(frm){
	var i;
	for(i=0;i<document.forms.length;i++)
		if(document.forms[i]==frm)
			return i;
	
	return 0;
};
//hbe.js,HBX1.0,COPYRIGHT 1997-2004 WEBSIDESTORY,INC. ALL RIGHTS RESERVED. U.S.PATENT No.6,393,479B1. Privacy notice:http://websidestory.com/privacy
var _vjs="HBX0101.01u";
function _NA(a){return new Array(a?a:0)}function _NO(){return new Object()}
var _mn=_hbq="",_hbA=_NA(),_hud="undefined",_lv=_NO(),_ec=_if=_ll=_hec=_hfs=_hfc=_fvf=_ic=_pC=_fc=_pv=0,_hbi=new Image(),_hbin=_NA(),_pA=_NA();
_lv.id=_lv.pos="";_hbE=_D("hbE")?_hbE:"";_hbEC=_D("hbEC")?_hbEC:0;
function _D(v){return(typeof eval("window._"+v)!=_hud)?eval("window._"+v):""}function _DD(v){return(typeof v!=_hud)?1:0}
function _A(v){return escape(v)}function _B(){return 0}function _GP(){return location.protocol=="https:"?"https://":"http://"}
function _IC(a,b,c){return a.charAt(b)==c?1:0}function _II(a,b,c){return a.indexOf(b,c?c:0)}function _IL(a){return a!=_hud?a.length:0}
function _IF(a,b,c){return a.lastIndexOf(b,c?c:_IL(a))}function _IP(a,b){return a.split(b)}
function _IS(a,b,c){return b>_IL(a)?"":a.substring(b,c!=null?c:_IL(a))}
function _RP(a,b,c,d){d=_II(a,b);if(d>-1){a=_RP(_IS(a,0,d)+","+_IS(a,d+_IL(b),_IL(a)),b,c)}return a}
function _TL(a){return a.toLowerCase()}function _TS(a){return a.toString()}function _TV(){_hbSend(1)}function _SV(a,b,c){_hbSet(a,b,c)}
function _VS(a,b){eval("_"+a+"='"+b+"'")}
function _VC(a,b,c,d){b=_IP(a,",");for(c=0;c<_IL(b);c++){d=_IP(b[c],"|");_VS(d[0],(_D(d[0]))?_D(d[0]):d[1]?d[1]:"")}}
for(var a=0;a<_hbEC;a++){_pv=_hbE[a];if(_pv._N=="pv"){for(var b in _pv){if(_EE(b)){_VS(b,_pv[b])}}}}
_VC("pn|PUT+PAGE+NAME+HERE,mlc|CONTENT+CATEGORY,elf|n,dlf|n,dft|n,pndef|title,ctdef|full,hcn|");
var _acct;
function _ER(a,b,c){_hbi.src=_GP()+_gn+"/HG?hc="+_mn+"&hb="+_A(_acct)+"&hec=1&ec=1"+((typeof a=="string")?"&err="+_A(a+"|"+c):"")}
function _EE(a){return(a!="_N"&&a!="_C")?1:0}_EV(window,"error",_ER);
function _hbSend(c,a,i){a="";_hec++;for(i in _hbA)a+="&"+i+"="+_hbA[i];_Q(_hbq+"&hec="+_hec+a+_hbSendEV());if(_DD(c)&&c!=0){_hbA=_NA()}}
function _hbSet(a,b,c,d,e){d=_II(_hbq,"&"+a+"=");if(d>-1){e=_II(_hbq,"&",d+1);e=e>d?e:_IL(_hbq);_hbq=_IS(_hbq,0,d)+_IS(_hbq,e);}_hbA[a]=(c==0)?b:_A(b);}
function _hbRedirect(a,b,c,d,e,f,g){_SV("n",a);_SV("vcon",b);if(_DD(d)&&_IL(d)>0){d=_IC(d,0,"&")?_IS(d,1,_IL(d)):d;e=_IP(d,"&");for(f=0;f<_IL(e);
f++){g=_IP(e[f],"=");_SV(g[0],g[1])}}_TV();if(c!=""){_SV("hec",0);setTimeout("location.href='"+c+"'",500)}}
function _hbSendEV(a,b,c,d,e,f,x,i){a=c="",e=_IL(_hbE);for(b=0;b<e;b++){c=_hbE[b];for(var d in c){if(_EE(d)){x=c[d].match(/\|/g);
if(x!=null&&_IL(x)>c._C)c._C=_IL(x)}}for(d in c){if(_EE(d)){x=c[d].match(/\|/g);x=(x==null)?0:_IL(x);for(i=x;i<c._C;i++)c[d]+="|"}}}
for(b=0;b<e;b++){c=_hbE[b];for(f=b+1;f<e;f++){if(_hbE[f]!=null&&c._N==_hbE[f]._N){for(d in c){if(_EE(d)&&_hbE[f]!=null)c[d]+="|"+_hbE[f][d];
_hbE[f][d]=""}}}for(d in c){if(_EE(d)&&c._N!=""&&c._N!="pv"){a+="&"+c._N+"."+d+"="+_RP(_A(c[d]),"%7C",",")}}}_hbE=_NA();_hbEC=0;return a}
function _hbM(a,b,c,d){_SV('n',a);_SV('vcon',b);if(_IL(c)>0)_SV(c,d);_TV()}
function _hbPageView(p,m){_hec=-1;_hbM(p,m,"")}
function _hbExitLink(n){_hbM(_pn,_mlc,"el",n)}function _hbDownload(n){_hbM(_pn,_mlc,"fn",n)}
function _hbVisitorSeg(n,p,m){_SV("n",p);_SV("vcon",m);_SV("seg",n,1);_TV()}function _hbCampaign(n,p,m){_hbM(p,m,"cmp",n)}
function _hbFunnel(n,p,m){_hbM(p,m,"fnl",n)}function _hbGoalPage(n,p,m){_hbM(p,m,"gp",m)}
function _LP(a,b,c,d,e,f,h,i,j,k,l){_ll=_IL(a);h=i="";for(b=0;b<_IL(a);b++){c=a[b];d=e="";if(c.name){f=c.name;d=_LVP(f,"lid");if(_IL(d)>0)c.lid=d;
e=_LVP(f,"lpos");if(_IL(e)>0)c.lpos=e}f=c.href;if(_IL(d)<1){d=_LVP(f,"lid");if(_IL(d)>0)c.lid=d}if(_IL(e)<1){e=_LVP(f,"lpos");if(_IL(e)>0)c.lpos=e}
l=_TL(c.protocol);if(l!="mailto:"&&l!="javascript:"){j=_LE(c),k=_LD(c);if(_DD(j)){c.el=j}else if(_DD(k)){c.fn=k}}}}
function _LE(a,b,c,d,e,f,g,h,i,j,k){b="([0-9A-Za-z\\-]*\\.)",c=location.hostname,d=a.href,h=i="";eval("_f=/"+b+"*"+b+"/");if(_DD(_f)){_f.exec(c);
j=(_DD(_elf))?_elf:"";if(j!="n"){if(_II(j,"!")>-1){h=_IS(j,0,_II(j,"!"));i=_IS(j,_II(j,"!")+1,_IL(j))}else{h=j}}k=0;if(_DD(_elf)&&_elf!="n"){
if(_IL(i)&&(new RegExp(_U(i))).test(a.href)){return}if(_IL(h)&&(new RegExp(_U(h))).test(a.href)){k=1}}eval("_f=/"+b+"*"+b+b+"/");_f.exec(c)
if(_II(a.hostname,RegExp.$2)<0||k){e=_IL(d)-1;return _IC(d,e,'/')?_IS(d,0,e):d}}}
function _LD(a,b,c,d,e,f){b=a.pathname,d=e="";b=_IS(b,_IF(b,"/")+1,_IL(b));c=(_DD(_dlf))?_dlf:"";if(c!="n"){if(_II(c,"!")>-1){d=","+
_IS(c,0,_II(c,"!"));e=","+_IS(c,_II(c,"!")+1,_IL(c))}else{d=","+c}}f=_II(b,"?");b=(f>-1)?_IS(b,0,f):b;
if(_II(b,".")>-1&&(!(new RegExp(_U("['\"]\\),..?(ht|x|cf)ml?,.[ajt]sp[x]?,.cgi,.php[3-4]?,.pl,.taf,.dll"+e),"i").test(b))||(new RegExp(_U("['\"]\\),"+d),"i").test(b)))){return _A((_DD(_dft)&&_dft!="n"&&a.name)?a.name:b)}}
function _LV(a,b,c,d,e,f,h,i){h=i="";for(b=0;b<_IL(a);b++){if(_IL(h)+_IL(i)>150){break}c=a[b];d=e=0;if(_DD(c.lid)){h+=c.lid+",";i+=
(_DD(c.lpos))?c.lpos+",":","}_lv.id=(_IC(h,_IL(h)-1,","))?_IS(h,0,_IL(h)-1):h;_lv.pos=(_IC(i,_IL(i)-1,","))?_IS(i,0,_IL(i)-1):i}}
function _LVP(a,b,c,d){c=_II(a,"&"+b+"=");c=c<0?_II(a,"?"+b+"="):c;if(c>-1){d=_II(a,'&',c+_IL(b)+2);return _IS(a,c+_IL(b)+2,d>-1?d:_IL(a))};return ""};
function _LI(a){var b=""+a.innerHTML,bu=_TL(b),i=_II(bu,"<img");if(bu&&i>-1){eval("__f=/ src\s*=\s*['\"]?([^'\" ]+)['\"]?/");
__f.exec(bu);if(RegExp.$1)b=RegExp.$1}return b}
function _LSP(a,b,c,d){d=_IP(a,b);return d.join(c)}
function _LS(a,b,c,d,e,f,g){b=_A(a);b=_LSP(b,"%0A","");b=_LSP(b,"%0D","");b=_LSP(b,"%09","%20");c=_IP(b,"%20");d=_NA();e=0;
for(f=0;f<_IL(c);f++){g=_RP(c[f],"%20","");if(_IL(g)>0){d[e++]=g}}b=d.join("%20");return unescape(b)}
function _LA(a,b,c,d){for(c=0;c<_IL(a.links);c++){d=a.links[c];if(_D("lt")&&_lt!="manual"){
if(!_DD(d.lid)||_IL(d.lid)<1)d.lid=_LS(d.text?d.text:d.innerText?d.innerText:"");
if(!_IL(d.lid)||_II(_TL(d.lid),"<img")>-1)d.lid=_LI(d)}if(_D("lt")=="auto_pos")d.lpos=c+1;_EV(d,'mousedown',_LT)}}
function _LT(e){if((e.which&&e.which==1)||(e.button&&e.button==1)){var a=document.all?window.event.srcElement:this;if(a.tagName&&_TL(a.tagName)!="a")
{a=a.parentElement;}var _f=0;if(_D("lt")&&_IC(_lt,0,"n")!=1&&_DD(a.lid)&&_IL(a.lid)>0){_SV("lid",a.lid);if(_DD(a.lpos))_SV("lpos",a.lpos);_f=1}
if(_DD(a.fn)){_SV("fn",a.fn);_f=2}else if(_DD(a.el)){_SV("el",a.el);_f=1}if(_f>0){if(_IL(_hlf)>0&&_f==1){_SV("lf",_hlf);_hfs=1}_TV()}}}
function _EM(a,b,c,d){a=_D("fv");b=_II(a,";"),c=parseInt(a);d=3;if(_TL(a)=="n"){d=999;_fv=""}else if(b>-1){d=_IS(a,0,b);_fv=_IS(a,b+1,_IL(a))}
else if(c>0){d=c;_fv=""}return d}
function _FF(e){var a=(_bnN)?this:_EVO(e);_hlf=(a.lf)?a.lf:""}
function _FU(e){if(_hfs==0&&_IL(_hlf)>0&&_fa==1){_hfs=1;if(_hfc)_SV("sf","1");_SV("lf",_hlf);_TV();_hlf="",_hfs=0,_hfc=0}}
function _FO(e){var a=true;if(_DD(this.FS))a=this.FS();if(a!=false)_hfc=1;return a}
function _FA(a,b,c,d,e,f,g,h,i,ff,fv,s){b=a.forms;ff=new Object();f=_EM();for(c=0;c<_IL(b);c++){ff=b[c],d=s=0,e=ff.elements,fv=eval(_D("fv"));if(_DD(fv)
&&_TL(_TS(fv))!="n"&&fv!=""&&typeof fv=="function"){_fv=new Function("if("+_fv+"()){_fvf=0;_hfc=1}");_EV(ff,"submit",_fv),_fvf=1,_fa=1}g=ff.name?
ff.name:"forms["+c+"]";for(h=0;h<_IL(e);h++){if(e[h].type&&"hiddenbuttonsubmitimagereset".indexOf(e[h].type)<0&&d++>=f)break}if(d>=f){_fa=1;
for(h=0;h<_IL(e);h++){i=e[h];if(i.type&&"hiddenbuttonsubmitimagereset".indexOf(i.type)<0){i.lf=g+".";i.lf+=(i.name&&i.name!="")?i.name:"elements["+h+"]";
_EV(i,"focus",_FF)}}document.forms[c].FS=null;document.forms[c].FS=ff.onsubmit;if(_DD(document.forms[c].FS)&&document.forms[c].FS!=null){
document.forms[c].onsubmit=_FO}else if(!(_bnN&&_bv<5)&&_hM){_EV(document.forms[c],"submit",_FO);
eval("try{document.forms["+c+"].FS=document.forms["+c+"].submit;document.forms["+c+"].submit=_FO;throw ''}catch(E){}")}}}}
function _GR(a,b,c,d){if(!_D("hrf"))return a;if(_II(_hrf,"http",0)>-1)return _hrf;b=window.location.search;b=_IL(b)>1?_IS(b,1,_IL(b)):"";
c=_II(b,_hrf+"=");if(c>-1){ d=_II(b,"&",c+1);d=d>c?d:_IL(b);b=_IS(b,c+_IL(_hrf)+1,d);}return(b!=_hud&&_IL(b)>0)?b:a}
function _PO(a,b,c,d,e,f,g){d=location,e=d.pathname,f=_IS(e,_IF(e,"/")+1),g=document.title;if(a&&b==c){return(_pndef=="title"&&g!=""&&g!=d&&
!(_bnN&&_II(g,"http")>0))?g:f?f:_pndef}else{return b==c?(e==""||e=="/")?"/":_IS(e,(_ctdef!="full")?_IF(e,"/",_IF(e,"/")-2):_II(e,"/"),_IF(e,"/"))
:(b=="/")?b:((_II(b,"/")?"/":"")+(_IF(b,"/")==_IL(b)-1?_IS(b,0,_IL(b)-1):b))}}
function _PP(a,b,c,d){return ""+(c>-1?_PO(b,_IS(a,0,c),d)+";"+_PP(_IS(a,c+1),b,_II(_IS(a,c+1),";")):_PO(b,a,d))}
_mlc=_PP(_mlc,0,_II( _mlc,";"),"CONTENT+CATEGORY");_pn=_PP(_pn,1,_II(_pn,";"),"PUT+PAGE+NAME+HERE");_LP(document.links);_LV(document.links);
var _rf=_A(document.referrer),_et=_oe=_we=0,_ar="",_hM=(!(_II(navigator.userAgent,"Mac")>-1)),_tls="";_bv=parseInt(navigator.appVersion);
_bv=(_bv>99)?(_bv/100):_bv;var __f,_hrat=_D("hra"),_hra="",_$r="document.referrer)+''}",_$c="catch(_e)",_hbi=new Image(),_fa=_hlfs=_hoc=0,
_hlf=_ce=_ln=_pl='',_bn=navigator.appName,_bn=(_II(_bn,"Microsoft")?_bn:"MSIE"),_bnN=(_bn=="Netscape"),_bnI=(_bn=="MSIE"),_hck="*; path=/; "+(_D("cpd")&&
_D("cpd")!=""?(" domain=."+_D("cpd")+"; "):"")+"expires=Wed, 1 Jan 2020 00:00:00 GMT",_N6=(_bnN&&_bv>4),_E5P=((_II(navigator.userAgent,'MSIE 5')>-1)||
(_II(navigator.userAgent,'MSIE 6')>-1)),_ss=_sc="na",_sv=11,_cy=_hp="u",_tp=_D("ptc");if(_N6||_E5P)eval("try{_tls=top.location.search}catch(_e){}")
function _E(a){var b="";var d=_IP(a,",");for(var c=0;c<_IL(d);c++)b+="&"+d[c]+"="+_A(_D(d[c]));return b}
function _F(a,b){return(!_II(a,"?"+b+"="))?0:_II(a,"&"+b+"=")}function _G(a,b,c,d){var e=_F(a,b);if(d&&e<0&&top&&window!=top){e=_F(_tls,b);
if(e>-1)a=_tls};return(e>-1)?_IS(a,e+2+_IL(b),(_II(a,"&",e+1)>-1)?_II(a,"&",e+1):_IL(a)):c}
function _H(a,b,c){if(!a)a=c;if(_E5P||_N6){eval("try{_vv=_G(location.search,'"+a+"','"+b+"',1)}"+_$c+"{}")}else{_vv=_G(location.search,a,b,1)}return unescape(_vv)}
function _I(a,b,c,d){__f=_IS(a,_II(a,"?"));if(b){if(_E5P||_N6){eval("try{_hra=_G(__f,_hqsr,_hra,0)}"+_$c+"{}")}else{_hra=_G(__f,_hqsr,_hra,0)}};
if(c&&!_hra){if(_E5P||_N6){eval("try{_hra=_G(location.search,_hqsp,_hra,1)}"+_$c+"{}")}else{_hra=_G(location.search,_hqsp,_hra,1)}};if(d&&!_hra)_hra=d;
return _hra}
_dcmpe=_H(_D("dcmpe"),_D("dcmpe"),"DCMPE");_dcmpre=_H(_D("dcmpre"),_D("dcmpre"),"DCMPRE");_vv="";_cmp=_H(_D("cmpn"),_D("cmp"),"CMP");
if(_II(_cmp,"SFS-")>-1){document.cookie="HBCMP="+_cmp+"; path=/;"+(_cpd!=""?(" domain=."+_cpd+"; "):"")+"expires=Wed, 1 Jan 2020 00:00:00 GMT";}
_gp=_H(_D("gpn"),_D("gp"),"GP");_dcmp=_H(_D("dcmpn"),_D("dcmp"),"DCMP");
function _J(a,b){return(_II(a,"CP=")<0)?"null":_IS(a,_II(a,"CP=")+3,(b=="*")?_II(a,"*"):null)}
if(_bnI&&_bv>3)_ln=navigator.userLanguage;if(_bnN){if(_bv>3)_ln=navigator.language;if(_bv>2)for(var i=0;i<_IL(navigator.plugins);i++)_pl+=
navigator.plugins[i].name+":"};var _cp=_D("cp");if(location.search&&_TL(_cp)=="null")_cp=_J(location.search,"x");if(_II(document.cookie,"CP=")>-1){
_ce="y";_hd=_J(document.cookie,"*");if(_TL(_hd)!="null"&&_cp=="null"){_cp=_hd}else{document.cookie="CP="+_cp+_hck}}else{document.cookie="CP="+_cp+_hck;
_ce=(_II(document.cookie,"CP=")>-1)?"y":"n"};if(window.screen){_sv=12;_ss=screen.width+"*"+screen.height;_sc=_bnI?screen.colorDepth:screen.pixelDepth;
if(_sc==_hud)_sc="na"};_ra=_NA();if(_ra.toSource||(_bnI&&_ra.shift))_sv=13;if(_E5P&&_hM){if(_II(""+navigator.appMinorVersion,"Privacy")>-1)_ce="p";
if(document.body&&document.body.addBehavior){document.body.addBehavior("#default#homePage");_hp=document.body.isHomePage(location.href)?"y":"n";
document.body.addBehavior("#default#clientCaps");_cy=document.body.connectionType}};var _hcc=(_DD(_hcn))?_D("hcv"):"";if(!_D("gn"))_gn="ehg.hitbox.com";
if(_D("ct")&&!_D("mlc"))_mlc=_ct;_ar=_GP()+_gn+"/HG?hc="+_mn+"&hb="+_A(_acct)+"&cd=1&hv=6&n="+_A(_pn)+"&con=&vcon="+_A(_mlc)+"&tt="+_D("lt")+
"&ja="+(navigator.javaEnabled()?"y":"n")+"&dt="+(new Date()).getHours()+"&zo="+(new Date()).getTimezoneOffset()+"&lm="+Date.parse(document.lastModified)+
(_tp?("&pt="+_tp):"")+_E((_bnN?"bn,":"")+"ce,ss,sc,sv,cy,hp,ln,vpc,vjs,hec,pec,cmp,gp,dcmp,dcmpe,dcmpre,cp,fnl")+"&seg="+_D("seg")+"&epg="+_D("epg")+
"&cv="+_A(_hcc)+"&gn="+_A(_D("hcn"))+"&ld="+_A(_D("hlt"))+"&la="+_A(_D("hla"))+"&c1="+_A(_D("hc1"))+"&c2="+_A(_D("hc2"))+"&c3="+_A(_D("hc3"))+"&c4="+
_A(_D("hc4"))+"&customerid="+_A(_D("ci")?_ci:_D("cid"))+"&lv.id="+_lv.id+"&lv.pos="+_lv.pos;if(_E5P||_N6){eval("try{_rf=_A(top."+_$r+_$c+"{_rf=_A("+_$r)}
else{if(top.document&&_IL(parent.frames)>1){_rf=_A(document.referrer)+""}else if(top.document){_rf=_A(top.document.referrer)+""}}if((_rf==_hud)||
(_rf==""))_rf="bookmark";_rf=unescape(_rf);_rf=_GR(_rf);_hra=_I(_rf,_D("hqsr"),_D("hqsp"),_hrat);_ar+="&ra="+_A(_hra)+"&rf="+_A(_rf)+"&pl="+_A(_pl)+
_hbSendEV();if(_D("onlyMedia")!="y")_hbi.src=_ar;_hbq=_IS(_ar,0,_II(_ar,"&hec"));_hbE=_NA();
function _Q(a){var b=new Image();_if=0;if(_bv>3)eval("b.onload=function(){_if=1}");b.src=a;
setTimeout("if(!_if){var b=new Image();b.src='"+a+"'}",(_bnN&&_bv<5)?100:500)}
function _U(a,b,c,d){b="",c=_IP(a,",");for(d=0;d<_IL(c);d++){if(c[d]){if(_IC(c[d],0,".")){b+="\\"+c[d]+"$|"}else{b+=c[d]+"|"}}}return _IS(b,0,_IL(b)-1)}
function _NN(a){return _D(a)!="none"}
function _X(a){if(_ec==0){_ec=1;a=document;if(_NN("lt")||_NN("dlf")||_NN("elf"))_LA(a);if(_NN("fv"))_FA(a)}}
function _EV(a,b,c){if(a.addEventListener){a.addEventListener(b,c,false)}else if(a.attachEvent){a.attachEvent("on"+b,c)}}
function _EVO(e){return document.all?window.event.srcElement:this} 
_EV(window,"load",_X);_EV(window,"unload",_FU);setTimeout("_X()",3000);;
//v1.4
//active links are not clickable
var disable_active_link = false;

//enable or disable rollovers on active links related by scope with active states
var rollover_active_scope = false;

/*active states, i.e all buttons that have corresponding (...)-a.*
e.g. if all (n-main-)(...).* have active states: ['n-main-']
only n-main-atty.gif and all (n-feat-)(...).* have active state: ['n-main-atty','n-feat']
none have active states: ['#']*/
var arr_active = ['#'];

//class applied to active text links
var active_class = 'active';

//[['link','scope','scope',(...)],(...)]
var arr_scopes=[
['/CM/Custom/TOCPracticeAreaDescriptions.asp','/PracticeAreas/','/CM/PracticeAreaDescriptions'],
['/CM/Custom/Attorneys.asp','/Bio/','/CM/AttorneyBios/'],
['/','/CM/Custom/Home.asp'],
['/CM/Custom/Contact.asp','/CM/Custom/ThankYou.asp']
];

//[['path to exclude from highlighting','exception','exception',(...)],(...)]
var enable_exception=false;
var arr_scope_exceptions=[
['/CM/Custom/TOCPracticeAreaDescriptions.asp','/PracticeAreas/Social-Security-Disability.asp','/PracticeAreas/Workers-Compensation.asp','/PracticeAreas/Personal-Injury.asp']
];

var at = document.getElementsByTagName('a'), it = document.getElementsByTagName('img'),i=0;
var uc = '~~~~';
//re = new RegExp(/^.+\('([^']+)'.+'\/(.+\/)+(.+)',.\)$/m);
re = new RegExp(/^.+\('([^']+)'.+?'\/([^.]+\/)+(.+?)',/m);

fp = document.location + uc;
rp = fp.replace(/^http:\/\/[^\/]+(\/.*)$/,'$1');
dn = fp.replace(rp,'')+'/';
rf = rp.replace(/^(\/(.+\/)+).+$/,'$1');
fn = rp.replace(rf,'');

fp = fp.replace(uc,'');
rp = rp.replace(uc,'');
fn = fn.replace(uc,'');


//Make '/' something unique
rp=(rp=='/')?uc:rp;
for(i=0;i<arr_scopes.length;i++){
	for(j=0;j<arr_scopes[i].length;j++){
		arr_scopes[i][j] = (arr_scopes[i][j]=='/')?uc:arr_scopes[i][j];
	}
}

for(i=0;i<at.length;i++){	
	at_hr = at[i].getAttribute('href');	
	if(at_hr!=null){
		at_hr=(at_hr==dn)?uc:at_hr;	
		bs = scopes(at_hr);
		
		if((at_hr.indexOf(rp)>-1&&at_hr.indexOf('#')==-1&&at_hr.indexOf('?')==-1||bs)){			
			
			//at[i].className=(at[i].className!='last')?active_class:active_last_class;
		
			at[i].className = (at[i].className!='')?at[i].className + ' ' + active_class:active_class;			
			
			if(!bs&&disable_active_link)
				at[i].removeAttribute('href');
			
			if(at[i].getAttribute('onmouseover')!=null){
				mo = at[i].getAttribute('onmouseover')+'';
				m = re.exec(mo);
	
				for(j=0;j<it.length;j++){
					if(it[j].getAttribute('name')==m[1]||it[j].getAttribute('id')==m[1]){
						as=m[3];
						for(k=0;k<arr_active.length;k++){
							if(m[3].indexOf(arr_active[k])>-1){
								as=m[3].replace('-o.','-a.');
								if(!bs||!rollover_active_scope)
									at[i].setAttribute('onmouseover',mo.replace('-o.','-a.'));
								break;
							}
						}					
						//alert(bs);
						
						it[j].src = '/Includes/Templates/Active/images/' + as;
					}
	
				}		
			}
		}
	}
}


function scopes(hr){	
	var i=0,j=0;
	//alert('*' + hr + '* - *' + dn + '*');
	mod_fp=(fn=='')?uc:fp;

	//Take care of exceptions first
	if(enable_exception){
		for(i=0;i<arr_scope_exceptions.length;i++){
			if(hr.indexOf(arr_scope_exceptions[i][0])>-1){			
				for(j=1;j<arr_scope_exceptions[i].length;j++){				
					if(mod_fp.indexOf(arr_scope_exceptions[i][j])>-1)
						return false;
				}
			}
		}
	}
	for(i=0;i<arr_scopes.length;i++){
		//Do scopes of current link fit the current file path? 
		if(hr.indexOf(arr_scopes[i][0])>-1){
			for(j=1;j<arr_scopes[i].length;j++){
				//alert(fp + ' - ' + arr_scopes[i][j] + ' - ' + i);
				
				if(mod_fp.indexOf(arr_scopes[i][j])>-1){
					return true;
				}
			}
		}
		
	}
	
	
	return false;
};

