<!--//

function showhidecontent(trID) {
  var oContent = document.all.item(trID);
//    var oimage = document.all.item("img" + trID);

  if (oContent.style.display=="none"){
    oContent.style.display='';
    //oimage.src='images/hide.gif';oimage.alt='Click Here To Collapse This Category';
  }
  else {
    oContent.style.display='none';
    //oimage.src='images/show.gif';oimage.alt='Click Here To Expand This Category';
  }
}

function windowOpen(theURL, Name, popW, popH, scroll, resize) { // V 1.0
  var winleft = (screen.width - popW) / 2;
  var winUp = (screen.height - popH) / 2;
  winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scroll+',resizable='+resize+'';
  Win = window.open(theURL, Name, winProp);
  Win.window.focus();
}

//-->