function slowdownScroll() {
   if(navigator.appName == "Microsoft Internet Explorer" && document.compatMode == "CSS1Compat") {
      sctop = document.body.parentNode.scrollTop;
   }
   else if(window.pageYOffset){
      sctop = window.pageYOffset;
   } else {
      sctop = document.body.scrollTop;
   }

   if(sctop){
      scup = Math.ceil(sctop*.2);
      scrollBy(0,-scup);
      if (sctop-scup) setTimeout("slowdownScroll()",20);
   }
}

//Text Size Script

var prefsLoaded = false;
var defaultFontSize = 12;
var currentFontSize = defaultFontSize;

function revertStyles(){

	currentFontSize = defaultFontSize;
	changeFontSize(0);

}
function changeFontSize(sizeDifference){
	currentFontSize = parseInt(currentFontSize) + parseInt(sizeDifference * 1);

	if(currentFontSize > 15){
		currentFontSize = 15;
	}else if(currentFontSize < 11){
		currentFontSize = 11;
	}

	setFontSize(currentFontSize);
};

function setFontSize(fontSize){
	var stObj = (document.getElementById) ? document.getElementById('content_area') : document.all('content_area');
	document.body.style.fontSize = fontSize + 'px';
	//alert (document.body.style.fontSize);
};

function showhide(num){

var rows = 16; // Number of rows to show/hide //;
for(i=1; i<=rows; i++){
which = document.getElementById('faq'+i);
highlight = document.getElementById('lnk'+i);

if(num == i){
	which.style.display = (which.style.display=='') ? 'none':'';
	highlight.style.color = '#339900';
}
else{
	which.style.display = 'none';
	highlight.style.color = '#0099CC';
	};
}
}