<!--
/**
 *  style = 0   ->  Window per immagini
 *  style = 1   ->  Window per cartina
 *  style = 2   ->  Window per acquisti
 */
function newwin(pagename, style)
  {
    if (style == 1)
      window.open(pagename, '', 'toolbar=1,menubar=1,scrollbars=2,status=yes,resizable=1,width=775,height=495,top=0,left=0');
    else
      if (style == 2)
        window.open(pagename, '', 'toolbar=0,menubar=0,scrollbars=2,status=no,resizable=1,width=600,height=525,top=25,left=100');
      else
        window.open(pagename, '', 'toolbar=0,menubar=0,scrollbars=2,status=yes,resizable=1,width=550,height=400,top=100,left=100');
  }
//-->