function carrello(){
	var w = 520;
	var h = 500;
	var l = 0;
	var t = 0;
    window.open("carrello.php","carrello","toolbar=0,location=0,directories=0,ststus=0,menubar=0,scrollbars=yes,resizable=0,width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}
function popup(articolo){
	var w = 510;
	var h = 520;
	var l = 0;
	var t = 0;
	dove = "dettaglio.php?articolo=" + articolo;
    window.open(dove,"","toolbar=0,location=0,directories=0,ststus=0,menubar=0,scrollbars=yes,resizable=0,width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}
function aggiungi_al_carrello(articoli_id){
	quantita_da_caricare = "quantita_" + articoli_id ;
	quantita = document.ordine[quantita_da_caricare];
	quantita_massima = "max_" + articoli_id ;
	massima = document.ordine[quantita_massima];
	if (isNaN(quantita.value) || quantita.length == 0){
		alert("Inserire un numero");
		quantita.focus();
	} else if (quantita.value < 1){
		alert("Inserire un numero maggiore di 0");
		quantita.focus();
	} else if (parseInt(quantita.value) > parseInt(massima.value)){
		alert("Massima quantità disponibile: "+ massima.value);
		quantita.value = massima.value;
		quantita.focus();
	} else {
		quanti = parseInt(document.ordine[quantita_da_caricare].value);
		dove = "include/inserimento.php?articoli_id=" + articoli_id + "&quantita=" + quanti;
		var w = 520;
		var h = 500;
		var l = 0;
		var t = 0;
    	window.open(dove,"carrello","toolbar=0,location=0,directories=0,ststus=0,menubar=0,scrollbars=yes,resizable=0,width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
		quantita.value ="";
	}
}
function chiudi(){
	window.close();
	}
function elimina_dal_carrello(id){
	document.carrello.elimina.value = id;
	document.carrello.submit();
}
function registrati(){
 var w = 535;
 var h = 430;
 var l = Math.floor((screen.width-w)/2);
 var t = Math.floor((screen.height-h)/2);
 window.open("registrati.php","registrati","toolbar=0,location=0,directories=0,ststus=0,menubar=0,scrollbars=yes,resizable=0,width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}
function registrati2(){
 var w = 535;
 var h = 430;
 var l = Math.floor((screen.width-w)/2);
 var t = Math.floor((screen.height-h)/2);
 window.open("registrati2.php","registrati","toolbar=0,location=0,directories=0,ststus=0,menubar=0,scrollbars=yes,resizable=0,width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}