﻿//validar login
function Login()
{//inicio de funcao

	 if(document.Formulario.Email.value == "" ) 
    {
      window.alert("Por favor preencher o campo Login ! ");
	  document.Formulario.Email.focus();
	  return false;
	 }
	 if(document.Formulario.Senha.value == "" ) 
    {
      window.alert("Por favor preencher o campo senha! ");
	  document.Formulario.Senha.focus();
	  return false;
	 }
}
//Abrir PopUp
function OpenPopUp(URL, SET)
{
    window.open(URL, '_blank', SET) 
}
function explain(nomeFoto) {
  newwin = window.open('','','scrollbars=1,top=20,left=20,width=740,height=530');
  if (!newwin.opener) newwin.opener = self;
  with (newwin.document)
  {
   open();
   write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Imagem Ampliada</title></head><body><div><img border="0" src="images/'+nomeFoto+'.jpg"> </div></body></html>');
   close();
  }
}

