<!--
   function highlight(cell,color) {
   //set cross-browser DOM
      if (document.all) {
         docObj = eval("document.all." + cell + ".style");
      } else {
         docObj = eval("document." + cell);
      }
   //change highlight color
      docObj.background = color;
   }

// start popUp window scripts

function errorSafe() {return true;}
window.onerror = errorSafe;

function newWin(url,name,rs,sc,mn,tl,lo,wd,hi) {
openWindow = window.open(url,name,'resizable='+rs+',scrollbars='+sc+',menubar='+mn+',toolbar='+tl+',location='+lo+',width='+wd+',height='+hi);}
name.window="menu"

function open_window(url) {
email = window.open(url,"eMail","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=550,height=450");
}

// table cell highlighting code

function changeto(highlightcolor){
source=event.srcElement
if (source.tagName=="TR"||source.tagName=="TABLE")
return
while(source.tagName!="TD")
source=source.parentElement
if (source.style.backgroundColor!=highlightcolor&&source.id!="ignore")
source.style.backgroundColor=highlightcolor
}

function changeback(originalcolor){
if (event.fromElement.contains(event.toElement)||source.contains(event.toElement)||source.id=="ignore")
return
if (event.toElement!=source)
source.style.backgroundColor=originalcolor
}

//-->

