var submitcount=0;

function SubmitOnce() 
{
    if (submitcount == 0)
       {
       submitcount++;
       return true;
       }
    else
       {
       alert("This form has already been submitted.  Please wait while your request is being processed.");
       return false;
       }
 }



function newWindow(url,width,height)
{
	window.open(url,"infoWin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + ",screenX=40,screenY=40");
}

function newFunctionalWindow(url,width,height)
{
	window.open(url,"infoWindow","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + ",screenX=40,screenY=40");
}

function newNamedWindow(url,name,width,height)
{
	win = window.open(url,name,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + ",screenX=40,screenY=40");
}

function newNamedPrintWindow(url,name,width,height)
{
	window.open(url,name,"toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + ",screenX=40,screenY=40");
}

function closeNamedWindow() {
  if (win && win.open && !win.closed) win.close();
}

