

var awPopUps = new Array();


function NewWindowLink(strURL, strParam, strSize, strName)
        {
       
       //alert(strURL + strName + strSize+strParam)
           //awPopUps[ awPopUps.length ] = open(strURL, strName, 'location=no,scrollbars=no,menubar=no,screenx=10,screeny=10,dependent=yes,titlebar=no,toolbar=no' + strSize); 
       
           awPopUps[ awPopUps.length ] = open(strURL, strName, strSize+strParam); 
       
       
        } 
      
function closeAllPopUps()
        {
           
          for ( var index = 0; index < awPopUps.length; index++ )
          
              {
                 if ( ( awPopUps[ index ] != null )&& !awPopUps[ index ].closed )
                   {
                      awPopUps[ index ].close();
                   }
                 awPopUps[ index ] = null;
                 
              }
        }

