  function newWin(obj,winWidth,winHeight) {
    if (winWidth==null) var winWidth = 820;
    if (winHeight==null) var winHeight = 680;
    if (obj.id==null) obj.id = 'newWin';
    if (obj.href==null) obj.href = 'blank';
    newwin = window.open(obj.href,'win'+obj.id,'width='+winWidth+',height='+winHeight+',resizable=1,scrollbars=yes');
    newwin.focus();
    obj.target = 'win'+obj.id;
    if (obj.id=="searchForm") obj.submit();
  }

function hoverAll(obj) {
  // underine hover affect (no underline when hovering) for all a-links within a NODE
  // this script is useful for multiple a links within a Div that should all underline at the same time
  if (document.getElementById) {
  var page_objects = obj.getElementsByTagName('A');
  for (j=0; j < page_objects.length; j++) {
    if (page_objects[j].style.textDecoration=='none') page_objects[j].style.textDecoration='underline';
    else page_objects[j].style.textDecoration='none';
  }
  }
}

