// JavaScript Document

function finestra(str) {
        searchWin = window.open(str,'finestra','scrollbars=no,resizable=no,width=500,height=500,status=no,location=no,toolbar=no');
}

function VaiAProdotti( Select ) {
   var temp = Array();
   var Opzione = Select.options[ Select.selectedIndex ];
   temp = Select.id.split( "-" );

   var idProdotto = Opzione.value;
   var idCategoria = temp[ 0 ];
   var idSottocategoria = temp[ 1 ];

   if( ( idProdotto ) && ( idCategoria ) && ( idSottocategoria ) ) {
      window.location.href= "scheda_prodotto.php?IDCategoria="+ idCategoria+ "&IDSottoCategoria="+ idSottocategoria + 
                                       "&Prodotto="+ idProdotto ;
   }

}

function VaiACesto( Select ) {
   var temp = Array();
   var Opzione = Select.options[ Select.selectedIndex ];
   temp = Select.id.split( "-" );

   var idProdotto = Opzione.value;
   var idCategoria = temp[ 0 ];
   var idSottocategoria = temp[ 1 ];

   if( ( idProdotto ) && ( idCategoria ) && ( idSottocategoria ) ) {
      window.location.href= "scheda_cesto.php?IDCategoria="+ idCategoria+ "&IDSottoCategoria="+ idSottocategoria + 
                                       "&Prodotto="+ idProdotto ;
   }

}

function VaiAElencoProdotti( Select ) {
   var Opzione = Select.options[ Select.selectedIndex ];

   var idCategoria = Select.id;
   var idSottocategoria = Opzione.value;

   if( ( idCategoria ) && ( idSottocategoria ) ) {
      window.location.href = "elenco_prodotti.php?IDCategoria="+ idCategoria + "&IDSottoCategoria="+ idSottocategoria ;
   }

}

function foto(args,larg,alt) {

		var x ='';
		var y ='';
		var tmp='';

		x = screen.width/2 - (larg/2) ;
		y = screen.height/2 - (alt/2) ;

		tmp= "scrollbars=no,width=" + larg + ",height=" + alt + ",top=" + y + ",left=" + x;

		window.open(args,'',tmp);
}