// JavaScript Document

var wm=null;

//POPUP DI INSERIMENTO DELL'ARTICOLO NEL CARRELLO
function aggiungiAlCarrello(codiceArticolo) {
   var w = 400;
   var h = 120;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
   
   if(wm && !wm.closed)
     wm.close();
     wm = window.open("php/aggiungiACarrello.php?ar_cod=" + codiceArticolo,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}

//POPUP DI ANTEPRIMA DELL'ARTICOLO
function mostraArticolo(codiceArticolo) {
   var w = 400;
   var h = 425;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
   if(wm && !wm.closed)
     wm.close();
     wm =  window.open("php/mostraArticolo.php?ar_cod=" + codiceArticolo,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l  + ", scrollbars=yes");
}