function showPhoto(photo, w, h) {
  //
  if (photo != 'empty') {
    //
    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
    //
    PhotoWin = window.open('', 'Foto', 'width='+w+', height='+h+', top='+wint+', left='+winl+', scrollbars=yes, resizable=yes');
    PhotoWin.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><center><img src="'+photo+'" border="0"></center></body>');
    //
  }
  //
}

function checkContactForm(Name, Email, Message) {
  //
  if (Name == '') {
    window.alert('Por favor, digite o seu nome ou o nome da sua empresa para enviar a sua mensagem.');
    event.returnValue=false; // Evitando submeter o formulário no ENTER.
  }
  else
  if (!(checkEmail(Email))) {
    window.alert('Digite um e-mail de contato válido para enviar o formulário.');
    event.returnValue=false; // Evitando submeter o formulário no ENTER.
  }
  else
  if (Message == '') {
    window.alert('Digite a sua mensagem e clique em "Enviar".');
    event.returnValue=false; // Evitando submeter o formulário no ENTER.
  }
  //
}

function checkEmail(email) {
  //
  var filter = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
  //
  if (filter.test(email))
    return true;
  else
    return false;
  //
}
