// JavaScript Document
function popit(cosa){
	newwindow=window.open(cosa,"Register","width=550,height=650,scrollbars=yes")
	newwindow.creator=self
	newwindow.focus();
}
function pophelp(cosa){
	newwindow=window.open(cosa,"Help","width=250,height=350,scrollbars=yes")
	newwindow.creator=self
	newwindow.focus();
}
function popnoti(cosa){
	newwindow=window.open(cosa,"Notifica","width=400,height=170,scrollbars=yes")
	newwindow.creator=self
	newwindow.focus();
}
function ShowTransientMessage() {
	window.status="Caricamento dati in corso...";
	DisplayMessageBox.style.display='';
	DisplayMessageBox.style.pixelTop=(document.body.clientHeight/2)-(DisplayMessageBox.offsetHeight/2)+(document.body.scrollTop);
	DisplayMessageBox.style.pixelLeft=(document.body.clientWidth/2)-(DisplayMessageBox.offsetWidth/2)+(document.body.scrollLeft);
}

function HideTransientMessage() {
	window.status="";
	DisplayMessageBox.style.display='none';
}

