function MM_openBrWindow(theURL,winName,features){ window.open(theURL,winName,features); }
var site = {
	addEvent: function(elm,evType,fn,useCapture){
		if(elm.addEventListener){
			elm.addEventListener(evType,fn,useCapture);
		}else if(elm.attachEvent){
			var r = elm.attachEvent('on' + evType, fn);
			return r;
		}else{
			elm['on' + evType] = fn;
		}
	},
	data: function(){
		var now=new Date();
		var horas=now.getHours();
		if(horas < 10){ horas = "0" + horas; }
		var minutos=now.getMinutes();
		if(minutos < 10){ minutos = "0" + minutos; }
		var dia=now.getDate();
		var mes=now.getMonth();
		var ano=now.getFullYear();
		document.getElementById("data").innerHTML = "<span class=\"hora\">" + horas + ":" + minutos + "</span> | " + dia + " de " + site.meses[mes] + " " + ano;
	},
	meses: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho','Julho','Agosto','Setembro','Outubro','Novembro','Dezembro']
};
function checkEmail(myForm) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.email.value)){
	if(myForm.texto.value){
		return (true);
	}else{
		alert("Preencha o campo Texto!");
	}
}else{
	alert("E-mail Incorrecto!");
}
return (false);
}