<!--
function HideDIV(d) { document.getElementById(d).style.display = "none"; }
function DisplayDIV(d) { document.getElementById(d).style.display = "block"; }
function showHide(id){
   el = document.getElementById(id);
   el.style.display = (el.style.display != 'block')? 'block' : 'none';
}
function hopup(theURL,winName,features) { 
  window.open(theURL,winName,features);
}
function getFocus(ne)
{
var toFocus = document.getElementById(ne);
toFocus.focus();
}

//-->