/* Funzione di utilità per alternare la visualizzazione della Tessera Socio */
function togglediv() {
   if (xx.visibility == "" || xx.visibility == "visible") {
      xx.visibility = "hidden";
      xx.position   = "absolute";
   }else{
      xx.visibility = "visible";
      xx.position   = "static";
   }
   return true;
}
function resetAll(obj, fun) {
   for (var i = 0; i < obj.length; i++)  {
      //document.writeln(obj[i].type);
      if ((obj[i].type == "select-one") ||
          (obj[i].type == "text")) {
         obj[i].value = '';      
      }
   }
}

