<!-- 
window.focus();

// make main window go to a particular URL
function mainWindowURL(url)
{
  if (window.opener)
  {
    // only specify url if not already at that page
    var curpage = new String(window.opener.location);
    if (curpage.indexOf(url) == -1)
      window.opener.location = url;
    window.opener.focus();
  }
  else
  {
    location = url;
  }
}

// -->


