
// popup div function, modified 2/25/08

function ccPopup() {
  //var isIE=document.all;
  //var isNN=!document.all&&document.getElementById;
  var ccpop = document.getElementById("ccpopup");
  var gotop = document.getElementById("top");
  if(gotop) gotop.focus();
  window.location.hash="#top";
  ccpop.style.visibility="visible";
  ccpop.style.display="";
}

function ccClose() {
  //var isIE=document.all; 
  //var isNN=!document.all&&document.getElementById;
  var ccpop = document.getElementById("ccpopup");
  //window.location.hash="";
  ccpop.style.visibility="hidden";
  ccpop.style.display="none";
}