// JavaScript Document

var popUpWin=0;
function ViewURL(URLStr)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width=760,height=600,left=50, top=50');
}

var popUpWinResults=0;
function viewResults(URLStr)
{
  if(popUpWinResults)
  {
    if(!popUpWinResults.closed) popUpWinResults.close();
  }
  popUpWinResults = open(URLStr, 'burwain', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=800,height=600,left=0, top=0,screenX=0,screenY=0');
}
