//begin_lib <!-- Begin External JavaScript -- DO NOT REMOVE THIS LINE -->

function jsTextChange(){
this.OverColor = "";
this.OutColor = "";
this.OverUnderline = true;
this.OutUnderline = true;
this.OverFont = "";
this.OutFont = "";
this.OverFontBold = false;
this.OutFontBold = false;
this.OverFontSize = "";
this.OutFontSize = "";
this.OverFontItalic = false;
this.OutFontItalic = false;
this.OverBgColor = "";
this.OutBgColor = "";
this.Over = tc_Over;
this.Out = tc_Out;
}

function tc_Over(item){
		  if(document.getElementById||document.all){
		  var t = null;
		  		if(item.style){
		  		t = item;
				}else{
				t = document.getElementById ? document.getElementById(item) : document.all(item);
				}
		  t.style.color = this.OverColor;
		  t.style.textDecoration = (this.OverUnderline) ? "underline" : "none";
		  t.style.fontFamily = this.OverFont;
		  t.style.fontWeight = (this.OverFontBold) ? "bold" : "normal";
		  t.style.fontSize = this.OverFontSize;
		  t.style.fontStyle = (this.OverFontItalic) ? "italic" : "normal";
		  t.style.backgroundColor = this.OverBgColor;
		  }
}

function tc_Out(item){
		  if(document.getElementById||document.all){
		  var t = null;
		  		if(item.style){
		  		t = item;
				}else{
				t = document.getElementById ? document.getElementById(item) : document.all(item);
				}
		  t.style.color = this.OutColor;
		  t.style.textDecoration = (this.OutUnderline) ? "underline" : "none";
		  t.style.fontFamily = this.Font;
		  t.style.fontWeight = (this.OutFontBold) ? "bold" : "normal";
		  t.style.fontSize = this.OutFontSize;
		  t.style.fontStyle = (this.OutFontItalic) ? "italic" : "normal";
		  t.style.backgroundColor = this.OutBgColor;
		  }
}

//end_lib <!-- End External JavaScript -- DO NOT REMOVE THIS LINE -->

