/*
  var ts = 3;
  var myCnt = 0; 
*/
  function showMe(div){
   var h = document.getElementById('bodyFrame').childNodes
   var d = document.getElementById(div)
   for(j=0;j<h.length;j++){
    if(h[j].tagName=='DIV'){h[j].style.display='none'}
   }
   d.style.display="block"
  }
/*
  function showPic(num){
   var s = document.getElementById("showImg").childNodes
   var cnt = 0
   for(j=0;j<s.length;j++){
    if(s[j].tagName=='IMG'){
     if(cnt++ == num){
      s[j].style.display='inline'
     }else{
      s[j].style.display='none'
     }
    }
   }
  }
  function showPrev(){
   var t = document.getElementById("thumbStrip").childNodes
   var cnt = 0
   var last = ts - 3
   var first = last - 2
   //alert(first + '|' + last)
   if(first < 0){return false;}
   for(j=0;j<t.length;j++){
    if(t[j].tagName=='IMG'){
     cnt++
     if((cnt>(first-1))&&(cnt<(last+1))){
      t[j].style.display="inline"
     }else{
      t[j].style.display="none"
     }
    }
   }
   ts = last
  }
  function showMore(){
   var t = document.getElementById("thumbStrip").childNodes
   var cnt = 0
   var first = ts + 1
   var last = first + 2
   //alert(first + '|' + last + '|' + t.length)
   if(last>myCnt && myCnt>0){return false;}
   for(j=0;j<t.length;j++){
    if(t[j].tagName=='IMG'){
     cnt++
     if((cnt>(first-1))&&(cnt<(last+1))){
      t[j].style.display="inline"
     }else{
      t[j].style.display="none"
     }
    }
   }
   ts = last
   myCnt = cnt
  }

  function killTextNodes(){
   var d = document.getElementById("thumbStrip");
   for(j=0;j<d.childNodes.length;j++){
    if(d.childNodes[j].nodeType==3){
     d.removeChild(d.childNodes[j--]);
    }
   }
  }
*/
  function popFaq(url,h){
   var myWindow = document.open('faq/'+url,'help','height='+h+',width=350,scrollbars=yes')
   myWindow.focus()
   return false;
  }
//  window.onload=killTextNodes;
