// JavaScript Document
function popup_dest(){
   window.open('destinazione-pop-up.asp','destinazione','resizable=no,width=450,height=250,scrollbars=yes');
   document.carrello.submit();
}
function popup_login(){
   window.open('register/user-login.asp','login','resizable=no,width=450,height=200,scrollbars=yes');
   document.form_login.submit();
}
function popvini(cosa){
	newwindow=window.open(cosa,"Dettaglio","width=400,height=450,scrollbars=yes")
	newwindow.creator=self
	newwindow.focus();
}
function popit(cosa){
	newwindow=window.open(cosa,"Register","width=550,height=450,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 popregistrazione(cosa){
	newwindow=window.open(cosa,"Register","width=550,height=500,scrollbars=yes")
	newwindow.creator=self
	newwindow.focus();
}
function popsendmail(cosa){
	newwindow=window.open(cosa,"SendMail","width=410,height=130,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';
}

