var isOpen = false;
var tmp= "";
var i;
function newWindows(link, mywidth, myheight)   
   {
       if (isOpen)
           {
              ImgWindow.close();
            }
        posizionex = 0
        posizioney = 0	

        if (screen)
           {
               //posizionex = screen.width - mywidth-15;
               posizionex = 0
			   posizioney =  0;
           }
                
         ImgWindow = window.open(link , 'catWin', 'width=' + mywidth + ',' +  'height=' + 
                                   myheight + ', left='+posizionex+', top='+posizioney+' ')

         ImgWindow .focus()
         isOpen=true;
         tmp=link;
    }


function chiudi_finestra() 
{
  If (isOpen)
     {
         ImgWindow.close();
     }
 }


