function popup(url,w,h,scr) { 
	t = ((screen.height - h) / 2) - 50;
	l = ((screen.width - w) / 2) - 10;
	newin = window.open(url,"titolo","scrollbars="+scr+",resizable=no, width="+ w +",height="+ h +",top="+ t + ", left="+ l +",status=no,location=no,toolbar=no");
	newin.creator = self;
	newin.focus();
} 
