//-----------------------------------------------------------------------------
///* Programado Add On Company 14/06/06 */
var popUpWin = 0;

function popUpAdd(URLStr, WinName, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, WinName, 'toolbar=no,location=no,directories=no,status=yes,resizable=no,copyhistory=no,scrollbars=yes, width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  
  return false;
}
//-----------------------------------------------------------------------------

