// TRIM JAVASCRIPT
function trim(str){
   return str.replace(/^\s*|\s*$/g,"");
}

// CHANGEACTION funzione per il cambio target della form login in HP
function changeAction(action){
   document.getElementById('dualform').action=action;
}

// Controlla campi login della dualform e lancia la submit

function dualSubmit(){
   var ut=trim(document.getElementById('dualform').login_username.value);
   var pwd=trim(document.getElementById('dualform').secretkey.value);
   if(ut==""){
      alert("Inserire l' utente");
      return;
   }
   if(pwd==""){
      alert("Inserire la password");
      return;
   }

   document.getElementById('dualform').submit();
}

function apriPOPUP(URLtoOpen, windowName, windowFeatures) {
    newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}
