

// Aggiunta prodotto al carrello
// _idProd = codice Prodotto
function addShoppingCart(_idProd){
	var _qtaObj  = document.getElementById("quantita" + _idProd);
	var _disObj  = document.getElementById("disponibile" + _idProd);

	if (eval(_qtaObj.value) <= eval(_disObj.value)){
		PopWin( _ROOT + '/ecommerce/addShoppingCart.asp?IDPROD=' + _idProd + '&QTA=' + _qtaObj.value, 730, 400 );
	}else{
		alert("Merce non disponibile in questa quantità. Quantità massima ordinabile " + _disObj.value + ".");
	}
}

// Area Clienti
function openAreaClienti(){
	PopWin( _ROOT + '/ecommerce/orderManage.asp', 730, 500 )
}

// Stampa fattura
function printBill(which){
	var _width = 750
	var _height = 550
	
	var LeftPositionLU = (screen.width) ? (screen.width-_width)/2 : 0; 
	var TopPositionLU  = (screen.height) ? (screen.height-_height)/2 : 0; 
	var settingsLU     = 'height=' + _height + ',width=' + _width +
						 ',top=' + TopPositionLU + ',left=' + LeftPositionLU +
						 ',titlebar=no,directories=no,status=no,scrollbars=yes,resizable=no,menubar=no';

	var billPrint  = window.open(_ROOT + "/ecommerce/bill.asp?PRINT=true&BILL_CODE=" + which,'printBill',settingsLU);
}

// Vedi fattura
function viewBill(which){
	var _width = 750
	var _height = 550
	
	var LeftPositionLU = (screen.width) ? (screen.width-_width)/2 : 0; 
	var TopPositionLU  = (screen.height) ? (screen.height-_height)/2 : 0; 
	var settingsLU     = 'height=' + _height + ',width=' + _width +
						 ',top=' + TopPositionLU + ',left=' + LeftPositionLU +
						 ',titlebar=no,directories=no,status=no,scrollbars=yes,resizable=no,menubar=no';

	var billPrint  = window.open(_ROOT + "/ecommerce/bill.asp?PRINT=false&BILL_CODE=" + which,'printBill',settingsLU);
}