function ApriCarrello(theURL,winName,features) { 

   if (navigator.appName.indexOf("Microsoft")>=0) {
      features+=',left=0,top=0'
    }else{
      features+=',screenX=0,screenY=0'
	} 
	tipo= typeof carrello;
	if (tipo!="undefined") carrello.close();
	carrello= window.open(theURL,winName,features);
	carrello.focus();
}
function ChiudiCarrello() { 
  	
	tipo=typeof carrello;
	if (tipo!="undefined") carrello.close();
}
function prenota(theURL,winName,features){

window.open(theURL,winName,features);
//alert('Appena il prodotto sarà disponibile riceverai una E-mail - GRAZIE');

}
function conferma(stringa){

	return confirm(stringa)
 
}


