// JavaScript Document
function Janela(url, width, height)
{
	var w = width;
	var h = height;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	window.open(url,"Pantheon","top="+TopPosition+",left="+LeftPosition+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,menubar=no,width="+width+",height="+height)
}
var Picture = new Array();
	Picture[1] = '1.jpg';
	Picture[2] = '2.jpg';
	Picture[3] = '3.jpg';
	Picture[4] = '4.jpg';
	Picture[5] = '5.jpg';
	Picture[6] = '6.jpg';
	Picture[7] = '7.jpg';		
var preLoad = new Array();
function mudaImg(numfoto){
  if( typeof(preLoad[numfoto]) == "undefined" )
  {
    preLoad[numfoto] = new Image();
    preLoad[numfoto].src = "../imgs/" + Picture[numfoto];
  }
  document.images.PictureBox.src = preLoad[numfoto].src;
}

function enviaContato() {
var vmensagem = '';
var ponto  = false;
var arroba = false;
var caracter = false;
var email = document.form.email.value;

   if (document.form.nome.value == "")      {
	  	vmensagem += ("- Digite o Nome.\n");
   }
   for(var i=0; i < email.length; i++){
       if(email.charAt(i) == "@")
            arroba = true;
       if(email.charAt(i) == ".")
            ponto = true;
       if(email.charAt(i) != " ")
            caracter = true;
    }
	if (ponto == false || arroba == false || caracter == false){
    vmensagem += ("- E-mail Inválido.\n");}
	if (document.form.assunto.value == "vazio")      {
	  	vmensagem += ("- Escolha o Assunto.\n");
    }
	if (document.form.msg.value == "")      {
	  	vmensagem += ("- Digite a Mensagem.\n");
    }
	if(vmensagem != ""){
		alert(vmensagem);
		}
	else {
		document.form.submit();
         }
}