function popup(str) {
	browserName = navigator.appName.substring(0,8);
	xpos = Math.round(screen.width / 2 - 200);
	ypos = Math.round(screen.height / 2 - 250);
	if (browserName == 'Netscape') {
		dovesiamo = open(str,'dovesiamo','scrollbars=no,height=312,width=580, resizable=no');
		dovesiamo.focus();
	}
	else {
		eval("dovesiamo = window.open(str, 'dovesiamo', 'height=312,left=" + xpos + ",location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no,top=" + ypos + ",width=580', 'false');");
		dovesiamo.focus();		
	}
}