	function openWin(thewindow) {
	remote=window.open(thewindow,"remotewin","toolbar=no,width=602,height=394,status=no,scrollbars=yes,resizable=no,menubar=no");
		if (remote.opener == null) remote.opener = window;
	}
  
  function openWinBig(thewindow,width,height) {
	  remote=window.open(thewindow,"newWindow","toolbar=yes,menubar=yes,width="+width+",height="+height);
		if (remote.opener == null) remote.opener = window;
	}
  function openWinBig(thewindow) {
	  remote=window.open(thewindow,"newWindow");
		if (remote.opener == null) remote.opener = window;
	}  

  function ShowInCPA2Biz(sURL)
  {
    try
    {
      self.opener.location.href(sURL);
      self.opener.focus();
    }
    catch(oError)
    {
      var winCPA2Biz = window.open(sURL,"winCPA2Biz");
      winCPA2Biz.focus();
    }
    return;
  }
