function openWindow2(S, O)
{
  sh = screen.height;

  wtop = window.screenTop - 50;
  wleft =  window.screenLeft - 10;
  fl = 500;

  fw = screen.width - fl - 15;
  
  fh = (sh * 0.65);
  if(wtop<0) wtop = 0;
  if(fl<0) fl = 0;
  if(fh<0) fh = 500;
  if(fw<0) fw = 300;
  if(fl > screen.width) fl = 0;
  
  w = open(S,"total","location=0,menubar=0,toolbar=0,status=yes,scrollbars=yes,resizable=yes,top=0,left="+ fl +",height="+ fh +",width=" + fw );

  w.focus();
  return (w);
}
function openWindow(S, O)
{
	openWindow2(S, O);
}
function doSendTot()
{
        with (document.forms[0] )
	{
		var bErr = false;

		bErr = doCheck();

		if (bErr)
		{
                        return ;
		}
		else
		{
//			action='/total/members/bin/total_sql.asp';
			action='/total/total.php';
			submit();
		}
	}
}
function doSendTot2()
{
        with (document.forms[0] )
	{
		var bErr = false;

		bErr = doCheck();

		if (bErr)
		{
                        return ;
		}
		else
		{
//			action='/total/members/bin/total_sql.asp';
			action='/total/total.php';
			submit();
		}
	}
}
