function menuOver(e){
  e.style.backgroundColor='#EFF6FA';
}

function menuOut(e){
  e.style.backgroundColor='#B6D6EB';
}

function openWindow(url,winname,width,height,left,top,scrollbars,resizable){
  if(winname=='')
    winname='newpopup';

  var opt = ''
  opt = opt + 'width=' + width
  opt = opt + ',height=' + height
  opt = opt + ',toolbar=0'
  opt = opt + ',resizable=' + resizable
  opt = opt + ',scrollbars=' + scrollbars
  opt = opt + ',left=' + left
  opt = opt + ',top=' + top

  var oWin = window.open(url,winname,opt);
  oWin.focus();
  return;
}