function fo(id){return document.getElementById(id)}
function setScrBarColors(line, face) {
return; // let's get rid of this for now...
  if (!isIE) return;
  with (document.body.style) {
    scrollbarDarkShadowColor=line;
    scrollbar3dLightColor=line;
    scrollbarBaseColor=face;
    scrollbarFaceColor=face;
    scrollbarHighlightColor=face;
    scrollbarShadowColor=face;
  }
}


function ToggleFaq(id)
{
  var o1= fo(id+"res");
  if (o1) o1.style.display = (o1.style.display=="none"?"":"none");
  var o = fo(id+"ico");
  <!-- if (o && o1) o.src = "/shared/img/" + (o1.style.display=="none"?"expand.gif":"contract.gif"); -->
  if (o && o1) o.src = "images/" + (o1.style.display=="none"?"expand.gif":"contract.gif");
}



function ExpandAllFAQs(sIDtempl, bExpand)
{
	var i = 1;
	var o = null;

	while (o = fo(sIDtempl+i+"res"))
	{
		if ((o.style.display=="none") && (bExpand)) ToggleFaq(sIDtempl+i);
		if ((o.style.display!="none") && (!bExpand)) ToggleFaq(sIDtempl+i);
        ++i;
	}
}
