//Set di funzioni per l'input 
function controllaPassword(form) {
  var u = form.Username.value;
  var p  = form.Password.value;
  var cp = form.CPassword.value;
 
   
  var errore =""; 

 
 if(u.length < 1 )
 	  errore+="Campo richiesto : user\n" 
 
 if(p.length < 1)
   errore+="Campo richiesto : password\n" 
 if( p != cp)
	errore+="Password e Conferma non combacianti";
	

if(p == cp && p.length > 0  && cp.length >0){
   return true;
   
  }

if(errore.length > 0) {
  alert(errore);
  return false ;
}


   
}

function validaFormula(form,theURL,nameFormula,winName,features){
 var valoreFormula;
 if(nameFormula == form.Formula1.name)
   valoreFormula = form.Formula1.value;
 else
   valoreFormula = form.Formula2.value;  
 
 
 
 var action ="";
 action += theURL + "?" + nameFormula + "=" + encodeMyHtml(valoreFormula) ;
 
	window.open(action,winName,features);
 
}

  function encodeMyHtml(stringa) {
     encodedHtml = escape(stringa);
     encodedHtml = encodedHtml.replace(/\//g,"%2F");
     encodedHtml = encodedHtml.replace(/\?/g,"%3F");
     encodedHtml = encodedHtml.replace(/=/g,"%3D");
     encodedHtml = encodedHtml.replace(/&/g,"%26");
     encodedHtml = encodedHtml.replace(/@/g,"%40");
    
    
     encodedHtml = encodedHtml.replace(/\+/g,"%2b");
     return encodedHtml;
     
   } 
   
  
function caricaImmagine(pathImmagine,optional) { 
	if (pathImmagine.length > 0) 
	{
	  document.getElementById("img2p").setAttribute("src",pathImmagine);
	  //document.getElementsByName("Imm")[0].src = pathImmagine;
      //document.Imm.src = pathImmagine;
      if(optional.length > 0)
        document.SalvaForm.imagePath.value =".";
    }
}

function vediBottone(nomeBottone){
    
  document.SalvaForm.nomeBottone.value = nomeBottone;
}
function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
  
}
function validateEmail(email)
{
// a very simple email validation checking. 
// you can add more complex email checking if it helps 
    var splitted = email.match("^(.+)@(.+)$");
    if(splitted == null) return false;
    if(splitted[1] != null )
    {
      var regexp_user="/^\"?[\w-_\.]*\"?$/";
      if(splitted[1].match(regexp_user) == null) return false;
    }
    if(splitted[2] != null)
    {
      var regexp_domain=/^[\w-\.]*\.[A-Za-z]{2,4}$/;
      if(splitted[2].match(regexp_domain) == null) 
      {
	    var regexp_ip =/^\[\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\]$/;
	    if(splitted[2].match(regexp_ip) == null) return false;
      }// if
      return true;
    }
return false;
}


/* function validateData 
*  Checks each field in a form 
*  Called from validateForm function 
*/ 
function validateData(strValidateStr,objValue,strError) 
{ 
    var epos = strValidateStr.search("="); 
    var  command  = ""; 
    var  cmdvalue = ""; 
    if(epos >= 0) 
    { 
     command  = strValidateStr.substring(0,epos); 
     cmdvalue = strValidateStr.substr(epos+1); 
    } 
    else 
    { 
     command = strValidateStr; 
    } 

    switch(command) 
    { 
        case "req": 
        case "required": 
         {                         
           if(eval(objValue.value.length) == 0) 
           { 
              if(!strError || strError.length ==0) 
              { 
                strError = objValue.name + " : Campo obbligatorio"; 
              }//if 
              alert(strError); 
              return false; 
           }//if 
           break;             
         }//case required 
        case "maxlength": 
        case "maxlen": 
          { 
             if(eval(objValue.value.length) >  eval(cmdvalue)) 
             { 
               if(!strError || strError.length ==0) 
               { 
                 strError = objValue.name + " : "+cmdvalue+" characters maximum "; 
               }//if 
               alert(strError + "\n[Lunghezza attuale = " + objValue.value.length + " ]"); 
               return false; 
             }//if 
             break; 
          }//case maxlen 
        case "minlength": 
        case "minlen": 
           { 
             if(eval(objValue.value.length) <  eval(cmdvalue)) 
             { 
               if(!strError || strError.length ==0) 
               { 
                 strError = objValue.name + " : " + cmdvalue + " caratteri minimo  "; 
               }//if               
               alert(strError + "\n[Lunghezza attuale = " + objValue.value.length + " ]"); 
               return false;                 
             }//if 
             break; 
            }//case minlen 
        case "alnum": 
        case "alphanumeric": 
           { 
              var charpos = objValue.value.search("[^A-Za-z0-9-/' '°.]"); 
              if(objValue.value.length > 0 &&  charpos >= 0) 
              { 
               if(!strError || strError.length ==0) 
                { 
                  strError = objValue.name+": utilizzare solo caratteri alfanumerici "; 
                }//if 
                alert(strError + "\n [Errore posizione " + eval(charpos+1)+"]"); 
                return false; 
              }//if 
              break; 
           }//case alphanumeric 
        case "num": 
        case "numeric": 
           { 
              var charpos = objValue.value.search("[^0-9.-]"); 
              if(objValue.value.length > 0 &&  charpos >= 0) 
              { 
                if(!strError || strError.length ==0) 
                { 
                  strError = objValue.name+":consentiti solo caratteri numerici \nPer inserire valori decimali utilizzare il carattere . (punto) e non il carattere , (virgola). "; 
                }//if               
                alert(strError + "\n [Errore posizione " + eval(charpos+1)+"]"); 
                return false; 
              }//if 
              break;               
           }//numeric 
        case "alphabetic": 
        case "alpha": 
           { 
              var charpos = objValue.value.search("[^A-Za-z]"); 
              if(objValue.value.length > 0 &&  charpos >= 0) 
              { 
                  if(!strError || strError.length ==0) 
                { 
                  strError = objValue.name+": utilizzare solo caratteri alfabetici "; 
                }//if                             
                alert(strError + "\n [Errore posizione " + eval(charpos+1)+"]"); 
                return false; 
              }//if 
              break; 
           }//alpha 
        case "email": 
          { 
               if(!validateEmail(objValue.value)) 
               { 
                 if(!strError || strError.length ==0) 
                 { 
                    strError = objValue.name+": inserire un indirizzo email valido "; 
                 }//if                                               
                 alert(strError); 
                 return false; 
               }//if 
           break; 
          }//case email 
        case "lt": 
        case "lessthan": 
         { 
            if(isNaN(objValue.value)) 
            { 
              alert(objValue.name+": deve essere un numero "); 
              return false; 
            }//if 
            if(eval(objValue.value) >=  eval(cmdvalue)) 
            { 
              if(!strError || strError.length ==0) 
              { 
                strError = objValue.name + " : il valore deve essere inferiore a "+ cmdvalue; 
              }//if               
              alert(strError); 
              return false;                 
             }//if             
            break; 
         }//case lessthan 
        case "gt": 
        case "greaterthan": 
         { 
            if(isNaN(objValue.value)) 
            { 
              alert(objValue.name+": deve essere un numero "); 
              return false; 
            }//if 
             if(eval(objValue.value) <=  eval(cmdvalue)) 
             { 
               if(!strError || strError.length ==0) 
               { 
                 strError = objValue.name + " : il valore deve essere maggiore di "+ cmdvalue; 
               }//if               
               alert(strError); 
               return false;                 
             }//if             
            break; 
         }//case greaterthan 
        case "regexp": 
         { 
            if(!objValue.value.match(cmdvalue)) 
            { 
              if(!strError || strError.length ==0) 
              { 
                strError = objValue.name+": carattere non valido "; 
              }//if                                                               
              alert(strError); 
              return false;                   
            }//if 
           break; 
         }//case regexp 
        case "dontselect": 
         { 
            if(objValue.selectedIndex == null) 
            { 
              alert("BUG: dontselect command for non-select Item"); 
              return false; 
            } 
            if(objValue.selectedIndex == eval(cmdvalue)) 
            { 
             if(!strError || strError.length ==0) 
              { 
              strError = objValue.name+": selezionare un opzione "; 
              }//if                                                               
              alert(strError); 
              return false;                                   
             } 
             break; 
         }//case dontselect 
    }//switch 
    return true; 
} 

/* 
* function validateForm 
* the function that can be used to validate any form 
* returns false if the validation fails; true if success 
* arguments : 
*   objFrm     : the form object 
*   arrObjDesc : an array of objects describing the validations to conduct on each 
*        input item. 
*          The array should consist of one object per input item in the order the input 
*          elements are present in the form. Each object consist of zero or more validation 
*          objects. Each of these validation object is a pair consisting of the validation 
*          descriptor string and an optional Error message. 
*/ 



function validateForm(objFrm,arrObjDesc) 
{
  
 for(var itrobj=0; itrobj < arrObjDesc.length; itrobj++) 
 { 
   if(objFrm.elements.length <= itrobj) 
   { 
        alert("BUG: Obj descriptor for a non existent form element"); 
        return false; 
   }//if 
   for(var itrdesc=0; itrdesc < arrObjDesc[itrobj].length ;itrdesc++) 
   { 
      if(validateData(arrObjDesc[itrobj][itrdesc][0], 
                 objFrm[itrobj],arrObjDesc[itrobj][itrdesc][1]) == false) 
       { 
	     objFrm[itrobj].focus();
         return false; 
       }//if 
   }//for 
 }//for 
 return true;
} 

 function ValidaFormPerdite()
        {   
            
            flag = true;
            isTwoDigits = 0;
            sottoStringa = "";
            chPos = 0;
            for (i = 0; i < document.forms[0].length; i++)
                if (document.forms[0][i].type == "text")
                {
                   inPezzi = false;
                    valore = document.forms[0][i].value;
                    
                    if (document.forms[0][i].name.search("_scarico") > 0)
                    
                        chPos = valore.search("[A-Za-z,]");
                       
                        
                    else
                    {
                        chPos = valore.search("[A-Za-z,.]");
						 inPezzi = true;
						 }
                    if (chPos > 0 && (inPezzi == true))
                    {
                        alert("Consentiti solo Numeri Interi" );
                        flag = false;
                        document.forms[0][i].focus();
                        break;
                    }else if (chPos > 0 && (inPezzi == false))
                    {
                        alert("Per Inserire valori decimali utilizzare il carattere .(punto) e non il carattere ,(virgola) " );
                        flag = false;
                        document.forms[0][i].focus();
                        break;
						                    
                    }                    
                    
                    if (document.forms[0][i].name.search("_scarico") > 0)
                    {
                        if (document.forms[0][i].value.length > 0)
                        {
                            pos = document.forms[0][i].value.indexOf(".");
                            if (pos > 0)
                            {
                                sottoStringa = document.forms[0][i].value.substr(pos + 1, document.forms[0][i].value.length);
                            }
                            if (sottoStringa.length > 2)
                            {
                                alert("Il campo in questione deve avere al massimo due cifre decimali   ");
                                flag = false;
                                document.forms[0][i].focus();
                            }
                        }
                    }
                }
            return flag;
        }


