// Variabili per il fade input
colorsInput=new Array()
colorsInput[0]='#8DB8C2';
colorsInput[1]='#CAFFFF';
colorsInput[2]='#A6FFFF';
colorsInput[3]='#00EAEA';
colorsInput[4]='#00D2D2';
colorsInput[5]='#00C4C4';
colorsInput[6]='#8DB8C2';

function fadeInput(azione,testo) {
  if (azione=="inizio") {
    for (i=0;i<colorsInput.length;i++) {
      setTimeout("document.forms['modulo'].elements['"+testo+"'].style.backgroundColor=colorsInput["+i+"]",i*100);
    }
  } else {
    for (i=colorsInput.length-1,y=0;i>=0;i--,y++) {
      setTimeout("document.forms['modulo'].elements['"+testo+"'].style.backgroundColor=colorsInput["+i+"]",y*100);
    }  
  }

} // fadeInput

function openpopup(link,w,h){

w_bord = 22;
h_bord =  29;

w_ratio = w / h;
h_ratio = h / w;

w_limit = screen.width - 90 ;
h_limit = screen.height - 70 ;

if (w > h)
{
  if (w > w_limit)
  {
      w_img = w_limit;
      w_diff = (w - w_img) / w_ratio;
      h_img = (h - w_diff);
  }
  else
  {
      h_img = h;
      w_img = w;
  }
}

if (h > w)
{
  if (h > h_limit)
  {
      h_img = h_limit;
      h_diff = (h - h_img) / h_ratio;
      w_img = (w - h_diff);

  }
  else
  {
      h_img = h;
      w_img = w;
  }
}

if (w == h)

{
      h_img = h;
      w_img = w;
}

xpos=Math.round(screen.width/2-(w_img/2)) - w_bord;
ypos=Math.round(screen.height/2-(h_img/2)) - h_bord;


      //alert(xpos + ' ' + ypos)


winpops=window.open(link,"wide",'width=' + (w_img+w_bord) + ',height=' + (h_img+h_bord) + ',scrollbars=no,left=' + xpos + ',top=' + ypos)
//winpops.document.bgColor="#0000CE"
//immagine =  link.replace('img/','');
//immagine =  link.replace('slideimages/','');
winpops.document.write('<!-- w='+w+' h='+h+' xpos='+xpos+' ypos='+ypos+'-->\n')
winpops.document.write('<HEAD>\n<TITLE> &copy; Radiosystem s.r.l. Italy</TITLE>\n</HEAD>\n')
winpops.document.write('<HTML>\n<BODY BGCOLOR="#ECE9D8">\n<CENTER>\n<A HREF="javascript:window.close()">\n<IMG SRC="' + link + '" BORDER="2" WIDTH="' + w_img + '"  HEIGHT="' + h_img + '"ALT="Clicca sull\' immagine per chiudere" STYLE="border-color:black; "cursor: hand;"></A>\n</CENTER>\n</BODY>\n</HTML>\n');
winpops.document.close()
}


function show_window(indice)
{
var pagina = 'show_prodotti.php';
//alert (pagina+'?ID_prodotti='+indice);
	w=600
	h=400
	xpos=Math.round(screen.width/2-(w/2))
	ypos=Math.round(screen.height/2-(h/2))
	window.open(pagina+'?ID_prodotti='+indice,'prodotto','width='+(w+20)+',height='+(h+29)+',scrollbars=yes,left='+xpos+',top='+ypos)
} 
