<!--
var wPopUp;

function makePopUp(arg) 
{
  if (!wPopUp ||wPopUp.closed )
  { 
	if(arg == 0)
	{
		wPopUp = window.open("/wait.html","PopUp","width=820,height=620,scrollbars=no,resizable=no,menubar=no");
	}
	else
	{
		wPopUp = window.open("/wait.html","PopUp","width=820,height=620,scrollbars=no,resizable=no,menubar=no");
	}
  }
		
  wPopUp.focus();
}

function makePopUp2(arg) 
{
  if (!wPopUp ||wPopUp.closed )
  { 
	if(arg == 0)
	{
		wPopUp = window.open("/wait.html","PopUp2","width=470,height=620,scrollbars=no,resizable=no,menubar=no");
	}
	else
	{
		wPopUp = window.open("/wait.html","PopUp2","width=470,height=620,scrollbars=no,resizable=no,menubar=no");
	}
  }
		
  wPopUp.focus();
}

