<!--
      function newwindow(url,name,stuff)
      {
        smallwin = window.open(url,name,stuff);

        if (smallwin.focus())
      	{
          smallwin.focus();
      	}
      }

      function closeandgo(whereto)
      {
        window.opener.location.href = whereto;
	window.close();
      }
      //-->
