
function openImage(imgName) {
	
	var URL = "fotoFull.asp?foto=" + imgName.toString();
	var name = "popUpFoto";
	var width = 550;
	var height = 480;
	
	w = (screen.width / 2) - (width / 2);
	h = (screen.height / 2) - (height / 2);
	wu = window.open(URL, name, "scrollbars=yes, resizable=yes, width=" + width + ", height=" + height + ", status=no, location=no, toolbar=no,top=" + h + ", left=" + w + "");
	
};

function apriCarrello(priceID, accessoriID) {
	
	apriCarrelloEx(priceID, accessoriID, 1);
	
};

function apriCarrelloEx(priceID, accessoriID, moltiplNo) {
	
	var URL = "carrello_parametri.asp?p=" + priceID + "&a=" + accessoriID + "&m=" + moltiplNo;
	var name = "popUpCarrello";
	var width = 690;
	var height = 400;
	var dblMolt = parseFloat(moltiplNo);
	
	if (isNaN(dblMolt)) return;
	if (dblMolt < 1) return;
	
	w = (screen.width / 2) - (width / 2);
	h = (screen.height / 2) - (height / 2);
	wu = window.open(URL, name, "scrollbars=yes, resizable=yes, width=" + width + ", height=" + height + ", status=no, location=no, toolbar=no,top=" + h + ", left=" + w + "");
	//location.replace(URL);
	
};

function apriPdf(urlPdf) {
	
	var name = "pdfProd";
	var width = 700;
	var height = 450;
	
	w = (screen.width / 2) - (width / 2);
	h = (screen.height / 2) - (height / 2);
	wu = window.open(urlPdf, name, "scrollbars=yes, resizable=yes, width=" + width + ", height=" + height + ", status=no, location=no, toolbar=no,top=" + h + ", left=" + w + "");
	
};

