function DoHighLight(mnu)
{
mnu.style.backgroundColor="#CCFFFF";
}
function UndoHighLight(mnu)
{
mnu.style.backgroundColor='';
}

function open_window(aWidth,aHeight, aUrl){    
    x = screen.width;
    x= x/2 - aWidth/2;
    y = screen.height;
    y = y/2 - aHeight/2;
    window.open(aUrl,'_blank','resizable=1, scrollbars=1,toolbar=1,location=no,directories=0,status=0, width='+aWidth+', height='+aHeight+', Left='+x+', Top='+y+'');
}
function DisplayChild(a,all){
    for (i=1; i<=all; i++){
       s=eval('reviewtable'+i);
       if (i==a){
        if (s.style.display == 'block') s.style.display='none';
        else s.style.display='block';
      }
      else s.style.display='none';
     }
  }
function ShowChild(aElementID){
  el = eval(aElementID);
  if (el.style.display == 'block') el.style.display='none';
  else el.style.display='block';
}  
