﻿function oggetto(nome){
 if (document.getElementById){
  return document.getElementById(nome);
 } else if (document.all){
  return document.all[nome];
 } else if (document.layers){
  return document.layers[nome];
 }
}

function vai() {
 var indi = oggetto("menu").options[oggetto("menu").selectedIndex].value;
 if (indi.length > 1) document.location.href = indi;
}

function mostraTab(n){
 for(var i = 0; i < 10; i++){
  if (oggetto('tc'+i) && oggetto('tab'+i)) {
   oggetto('tc'+i).className = (n==i)?"tbon":"tboff";
   oggetto('tab'+i).className = (n==i)?"ok":"";
  }
 }
}

function fprod(a,b) {
 oggetto(a).style.backgroundPosition = '0px -'+(b*150)+'px';
}
