
  function targetopener(mylink, closeme, closeonly)
{
if (! (window.focus && window.opener))return true;
window.opener.focus();
if (! closeonly)window.opener.location.href=mylink.href;
if (closeme)window.close();
return false;
}

function ChangeColor(tableRow, highLight)  
{      
if (highLight)      
{ tableRow.style.backgroundColor = '#E9E9DB'; }      
else      
{ tableRow.style.backgroundColor = ''; }  
}

function DoNav(theUrl)  
{ document.location.href = theUrl; }  

