function dettagli(path,product)
{
  if(path != "")
    path += "/";
  else
    path += "/"
  var wnd = window.open(path+"popup_prodotto.aspx?"+product, 'Dettaglio', 'scrollbar=no, width=340, height=670');
	wnd.focus();
}

function confezione(path,product)
{	
  var wnd = window.open(path+"/popup_prodotto_conf.aspx?"+product, 'Confezione', 'scrollbar=no, width=300, height=300');
	wnd.focus();
}
