function newWin(src)
   {                    
       w=600;                      
       h=400;                        
                            
       x=(self.outerWidth-w)/2+self.screenX;     
       y=(self.outerHeight-h)/2+self.screenY;    
                                                   
       var confirmWin = window.open(src,'','width='+w+',height='+h+',menubar=no,location=no,toolbar=no,scrollbars=yes, screenX=' + x + ', screenY=' +y);
    if(confirmWin.opener==null)                 
        {                     
	        confirmWin.opener = self;                         
		    }                                 
		    }                                     



























