function RestoreHelpdeskValues()
{
  if(document.submitform && readCookie) {
    var hd_name = readCookie('hd_name');
    var hd_firma = readCookie('hd_firma');
    var hd_tel = readCookie('hd_tel');
    var hd_mail = readCookie('hd_mail');
    
    if( hd_name) {
      document.submitform.name.value = hd_name;
      }
    if(hd_firma) {
      document.submitform.firma.value = hd_firma;
      }
    if(hd_tel) {
      document.submitform.tel.value = hd_tel;
      }
    if(hd_mail) {
      document.submitform.mail.value = hd_mail;
      }
    }
}

function SaveHelpdeskValues()
{
  var days = 365;
  if( document.submitform && createCookie) {
    createCookie('hd_name', document.submitform.name.value, days);
    createCookie('hd_firma', document.submitform.firma.value, days);
    createCookie('hd_tel', document.submitform.tel.value, days);
    createCookie('hd_mail', document.submitform.mail.value, days);
    }
}

