// formulario de contactos//
function validateFormContactos(form) {
  var nome = form.nome.value;
  var apelido = form.apelido.value;
  var email = form.email.value;
  var emailRegex = /^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$/;
  var mensagem = form.mensagem.value;
  
  if(nome == "") {
    inlineMsg('nome','Campo obligatorio!',2);
    return false;
  }
  if(apelido == "") {
    inlineMsg('apelido','Campo obligatorio!',2);
    return false;
  }
  if(email == "") {
    inlineMsg('email','Campo obligatorio!',2);
    return false;
  }
  if(!email.match(emailRegex)) {
    inlineMsg('email','<strong>Error</strong><br />El correo electrónico introducido es incorrecto!',2);
    return false;
  }
  if(mensagem == "") {
    inlineMsg('mensagem','Campo obligatorio!',2);
    return false;
  }
  return true;
}
// formulario de candidatura a membro WASA//
function validateFormCandidatura(form) {
  var nome = form.nome.value;
  var apelido = form.apelido.value;
  var cidadeo = form.cidadeo.value;
  var paiso = form.paiso.value;
  var cidader = form.cidader.value;
  var paisr = form.paisr.value;
  var postal = form.postal.value;
  var email = form.email.value;
  var emailRegex = /^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$/;
  
  if(nome == "") {
    inlineMsg('nome','Campo obligatorio!',2);
    return false;
  }
  if(apelido == "") {
    inlineMsg('apelido','Campo obligatorio!',2);
    return false;
  }
  if(cidadeo == "") {
    inlineMsg('cidadeo','Campo obligatorio!',2);
    return false;
  }
  if(paiso == "") {
    inlineMsg('paiso','Campo obligatorio!',2);
    return false;
  }
  if(cidader == "") {
    inlineMsg('cidader','Campo obligatorio!',2);
    return false;
  }
  if(paisr == "") {
    inlineMsg('paisr','Campo obligatorio!',2);
    return false;
  }
  if(postal == "") {
    inlineMsg('postal','Campo obligatorio!',2);
    return false;
  }  
  if(email == "") {
    inlineMsg('email','Campo obligatorio!',2);
    return false;
  }
  if(!email.match(emailRegex)) {
    inlineMsg('email','<strong>Error</strong><br />El correo electrónico introducido es incorrecto!',2);
    return false;
  }
  return true;
}

// formulario de Mensagens Forum//
function validateFormMessageForum(form) {
  var titulo = form.titulo.value;
  var descricao = form.descricao.value;
  
  if(titulo== "") {
    inlineMsg('titulo','Campo obligatorio!',2);
    return false;
  }
  if(descricao == "") {
    inlineMsg('descricao','Campo obligatorio!',2);
    return false;
  }
  return true;
}

// form de editar dados de membro profissional//
function validateFormEditMembroProfissionalFrontoffice(form) {
  var nome = form.nome.value;
  var apelido = form.apelido.value;
  var cidadeo = form.cidadeo.value;
  var paiso = form.paiso.value;
  var cidader = form.cidader.value;
  var paisr = form.paisr.value;
  var direccao = form.direccao.value;
 
  if(nome == "") {
    inlineMsg('nome','Campo obligatorio!',2);
    return false;
  }
  if(apelido == "") {
    inlineMsg('apelido','Campo obligatorio!',2);
    return false;
  }
  if(cidadeo == "") {
    inlineMsg('cidadeo','Campo obligatorio!',2);
    return false;
  }
  if(paiso == "") {
    inlineMsg('paiso','Campo obligatorio!',2);
    return false;
  }
  if(cidader == "") {
    inlineMsg('cidader','Campo obligatorio!',2);
    return false;
  }
  if(paisr == "") {
    inlineMsg('paisr','Campo obligatorio!',2);
    return false;
  }
  if(direccao == "") {
    inlineMsg('direccao','Campo obligatorio!',2);
    return false;
  }
  return true;
}

// form de editar dados de membro institucional//
function validateFormEditMembroInstitucionalFrontoffice(form) {
  var nome = form.nome.value;
  var cidader = form.cidader.value;
  var paisr = form.paisr.value;
  var tipoorganiza = form.tipoorganiza.value;
  var actividade = form.actividade.value;
  var persona = form.persona.value;
  var cargo = form.cargo.value;
  var descricao = form.descricao.value;
 
  if(nome == "") {
    inlineMsg('nome','Campo obligatorio!',2);
    return false;
  }
  if(cidader == "") {
    inlineMsg('cidader','Campo obligatorio!',2);
    return false;
  }
  if(paisr == "") {
    inlineMsg('paisr','Campo obligatorio!',2);
    return false;
  }
  if(tipoorganiza == "") {
    inlineMsg('tipoorganiza','Campo obligatorio!',2);
    return false;
  }
  if(actividade == "") {
    inlineMsg('actividade','Campo obligatorio!',2);
    return false;
  }
  if(persona == "") {
    inlineMsg('persona','Campo obligatorio!',2);
    return false;
  }
  if(cargo == "") {
    inlineMsg('cargo','Campo obligatorio!',2);
    return false;
  }
  if(descricao == "") {
    inlineMsg('descricao','Campo obligatorio!',2);
    return false;
  }
  return true;
}

// START OF MESSAGE SCRIPT //
var MSGTIMER = 20;
var MSGSPEED = 5;
var MSGOFFSET = 3;
var MSGHIDE = 3;

// build out the divs, set attributes and call the fade function //
function inlineMsg(target,string,autohide) {
  var msg;
  var msgcontent;
  if(!document.getElementById('msg')) {
    msg = document.createElement('div');
    msg.id = 'msg';
    msgcontent = document.createElement('div');
    msgcontent.id = 'msgcontent';
    document.body.appendChild(msg);
    msg.appendChild(msgcontent);
    msg.style.filter = 'alpha(opacity=0)';
    msg.style.opacity = 0;
    msg.alpha = 0;
  } else {
    msg = document.getElementById('msg');
    msgcontent = document.getElementById('msgcontent');
  }
  msgcontent.innerHTML = string;
  msg.style.display = 'block';
  var msgheight = msg.offsetHeight;
  var targetdiv = document.getElementById(target);
  targetdiv.focus();
  var targetheight = targetdiv.offsetHeight;
  var targetwidth = targetdiv.offsetWidth;
  var topposition = topPosition(targetdiv) - ((msgheight - targetheight) / 2);
  var leftposition = leftPosition(targetdiv) + targetwidth + MSGOFFSET;
  msg.style.top = topposition + 'px';
  msg.style.left = leftposition + 'px';
  clearInterval(msg.timer);
  msg.timer = setInterval("fadeMsg(1)", MSGTIMER);
  if(!autohide) {
    autohide = MSGHIDE;  
  }
  window.setTimeout("hideMsg()", (autohide * 3000));
}

// hide the form alert //
function hideMsg(msg) {
  var msg = document.getElementById('msg');
  if(!msg.timer) {
    msg.timer = setInterval("fadeMsg(0)", MSGTIMER);
  }
}

// face the message box //
function fadeMsg(flag) {
  if(flag == null) {
    flag = 1;
  }
  var msg = document.getElementById('msg');
  var value;
  if(flag == 1) {
    value = msg.alpha + MSGSPEED;
  } else {
    value = msg.alpha - MSGSPEED;
  }
  msg.alpha = value;
  msg.style.opacity = (value / 100);
  msg.style.filter = 'alpha(opacity=' + value + ')';
  if(value >= 99) {
    clearInterval(msg.timer);
    msg.timer = null;
  } else if(value <= 1) {
    msg.style.display = "none";
    clearInterval(msg.timer);
  }
}

// calculate the position of the element in relation to the left of the browser //
function leftPosition(target) {
  var left = 0;
  if(target.offsetParent) {
    while(1) {
      left += target.offsetLeft;
      if(!target.offsetParent) {
        break;
      }
      target = target.offsetParent;
    }
  } else if(target.x) {
    left += target.x;
  }
  return left;
}

// calculate the position of the element in relation to the top of the browser window //
function topPosition(target) {
  var top = 0;
  if(target.offsetParent) {
    while(1) {
      top += target.offsetTop;
      if(!target.offsetParent) {
        break;
      }
      target = target.offsetParent;
    }
  } else if(target.y) {
    top += target.y;
  }
  return top;
}

// preload the arrow //
if(document.images) {
  arrow = new Image(7,80); 
  arrow.src = "../img/msg_arrow.gif"; 
}
