<!--
/**
 *  style = 0   ->  Window per immagini
 *  style = 1   ->  Window per cartina
 *  style = 2   ->  Window per acquisti
 *  style = 2   ->  Window per progetti ma con altezza maggiore
 */
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=780,height=525,top=25,left=100');
      else
      	if (style == 3)
      		window.open(pagename, '', 'toolbar=0,menubar=0,scrollbars=2,status=no,resizable=1,width=780,height=600,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');
  }
//-->
