function AddWin2(str) {
			
			// USO: in body <a href="javascript:AddWin2('test.htm')">
			//			        clicca qui
			//		        </a>
var popwin = window.open(str,'popup','scrollbars=yes,resizable=yes,width=800,height=600,left=0,top=0,menubar=no,status=no,location=no,toolbar=no,titlebar=no', marginwidth=0, marginheight=0);
   popwin.focus() 
}

function AddWin(str) {
			
			// USO: in body <a href="javascript:AddWin('test.htm')">
			//			        clicca qui
			//		        </a>
var popwin = window.open(str,'popup','scrollbars=no,resizable=no,width=600,height=400,left=300,top=0,menubar=no,status=no,location=no,toolbar=no,titlebar=no', marginwidth=0, marginheight=0);

   popwin.focus() 

}