// JavaScript Document
function disegna_piu(x,y,id,link1,big_width,big_height) {
  //jg.setColor("#cc0000"); // green
  //jg.drawEllipse(tempX-raggio, tempY-raggio, raggio*2, raggio*2); // co-ordinates related to the document
  jg.drawImageLink("/prodotti/images/ico_enlarge.gif", "javascript:foto=window.open('"+link1+"?id="+ id +"','IMG1','width="+big_width+",height="+big_height+",toolbar=no,scrollbars=no,resizable=no');foto.focus();","Clicca per ingrandire",x,y, 23, 20); 
  jg.paint();
}

function disegna_logo(x,y) {
  //jg.setColor("#cc0000"); // green
  //jg.drawEllipse(tempX-raggio, tempY-raggio, raggio*2, raggio*2); // co-ordinates related to the document
  jg.drawImageLink("/prodotti/images/logo_pop_up.gif", "javascript:close();","Chiudi",x,y, 50, 49); 
  jg.paint();
}

