function caricaFoto(img){
	w=200;
	h=120;
	var left = Math.floor((screen.width-w)/2);
	var top = Math.floor((screen.height-h)/2);
	var setting="location=no,menubar=no,resizable=no,scrollbars=yes,toolbar=no,width="+w+",height="+h+",top="+top+",left="+left;
	newWin=window.open("openimg.php?img="+img, 'popUp', setting);
	newWin.focus();
}

function gId(id){
	return document.getElementById(id);
}


function apri(URL,width,height) {

var left = (screen.width/2) - width/2;
var top = (screen.height/2) - height/2;
var styleStr = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;

window.open(URL,"", styleStr);
}

function apriS(URL,width,height) {

var left = (screen.width/2) - width/2;
var top = (screen.height/2) - height/2;
var styleStr = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;

window.open(URL,"", styleStr);
}

function caricaFotoPhotoGallery(url) {
	var left= 0;
	var top= 0;	
	wid = window.open(url, "popupimmagine", 'toolbar=no,directories=no,resizable=NO,menubar=no,scrollbars=NO,width=100,height=100,top='+top+',left='+left);
	wid.focus();
}


//operazioni carrello

        function aggiornaCarrello()
        {
          document.carrello.aggiorna.value='Aggiorna';
        }
        
  function toggleDiv(divid){
    if(document.getElementById(divid).style.display == 'none'){
      document.getElementById(divid).style.display = 'block';
    }else{
      document.getElementById(divid).style.display = 'none';
    }
  }
  function msgCarrello01(){
  
  	alert("Attenzione!\nIl numero totale delle bottiglie di vino ordinate deve essere pari a 6 o multipli di 6.\nAggiungi o rimuovi dei vini in modo da raggiungere il multiplo di 6.\nI vini possono anche essere diversi (es. 3 bottiglie di sangiovese, 2 bottiglie di albana, 1 bottiglia di Pagadebit).\n");
    }          
