// JavaScript Document
function popit(cosa){
	newwindow=window.open(cosa,"Register","width=550,height=500,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 popfin(cosa){
	newwindow=window.open(cosa,"Notifica","width=700,height=370,scrollbars=yes")
	newwindow.creator=self
	newwindow.focus();
}
function popup_riepilogo(){
   window.open('e-cart/riepilogo-ordine.asp','riepilogo','resizable=no,width=600,height=400,scrollbars=yes');
   document.riepilogo.submit();
   return false;
}
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';
}
