function SubmitToggleAnswers()
    {
       document.frmfaq.ShowAns.value = (document.frmfaq.ShowAns.value.toLowerCase() == 'true' ? 'false' : 'true')
       document.frmfaq.submit();
    }
				
function reSizeFont(direction)
{
    var isNS4=document.layers?true:false; 
    var isIE=document.all?true:false; 
    var isNS6=!isIE&&document.getElementById?true:false; 
    var intStep = 2;
    var intMidFontSize = 13;
    var intMinFontSize = intMidFontSize - (intStep * 2);
    var intMaxFontSize = intMidFontSize + (intStep * 2);
    var intNewValue = 0;				
    var collection = document.getElementsByTagName('div');
    var num = collection.length ;
    
    for (var i = 0; i < (num); i++)
     {  
     	 
         var divid = collection[i].getAttribute('id'); 
         var oElem = document.getElementById(divid); 
         if (isNS6)
            {         	
              var curfontsize =oElem.style.fontSize;            
            }
            
         else
            {
              var curfontsize = oElem.getAttribute('currentStyle').fontSize ;
            }
            
	 var intFontSize = parseInt(curfontsize.substring(0,2));
	 
	 if (direction == '+1')
	     {
	       if (intFontSize < intMaxFontSize){intFontSize += intStep;}
	     }
	 if  (direction == '-1')
	     {
	        if (intFontSize > intMinFontSize){intFontSize -= intStep;}
	     }
	 oElem.style.fontSize = intFontSize + 'px' ;
	    
	 var a_Collection = collection[i].getElementsByTagName('a');
	   
	 for (j=0; j <= a_Collection.length - 1; j++)
	     {
	       a_Collection[j].style.fontSize = intFontSize + 'px' ;
	     }
	         
	  var p_Collection = collection[i].getElementsByTagName('p');
	    
	  for (k=0; k <= p_Collection.length - 1; k++)
	     {
	       	p_Collection[k].style.fontSize = intFontSize + 'px' ;
	     }                      			
     } 
}								
		
function ShowHide(id) 
  { 
     var isNS = (navigator.appName == 'Netscape'); 
     var isNS4 = (isNS && parseInt(navigator.appVersion) >= 4 && parseInt(navigator.appVersion) < 5); 
     var layerRef = isNS4 ? 'document.layers' : 'document.all'; 
     var isDOM= document.getElementById?true:false; 				
     var _height=null;
     var _image= 'img' + id ;
    
     if (isDOM)
       { 
         oElement = document.getElementById(id); 
         if(_height==null) _height=oElement.style.height;  
         oElement.style.visibility =oElement.style.visibility== 'hidden'?'visible':'hidden';
         
         if (oElement.style.visibility == 'hidden')
            { 
             oElement.style.overflow= 'hidden' 
             document.images[_image].src = 'images/iconPlus.gif' 
             oElement.style.height=oElement.style.height=='1px'?'1em':'1px'; 
            }
         else
            {  
             oElement.style.overflow ='visible' 
             document.images[_image].src = 'images/iconMinus.gif' 
             oElement.style.height=oElement.style.height=='1px'?'1em':'1px';
            } 
      }
         
  }



  
  