/* Script per il pop-up delle immagini */

function popimage(imagesrc,winwidth,winheight){
var look='width='+winwidth+',height='+winheight+','
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>Immagine Richiesta</title><body><img src="'+imagesrc+'"></body>')
popwin.document.close()
}

/* Script per le finestre pop.up */
function popup(pagina, l, h) {
      window.open(pagina ,'Portfolio','width='+l+', height='+h+', toolbar=no, menubar=no, status=no, resizable=no, scrollbars=no, top=0, left=0');
}