<!--
	function email(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
	}	
	
function OpenComments (c) {
	window.open(c,
		'comments',
		'width=480,height=480,scrollbars=yes,status=yes');
	}	
		
function OpenPodcast (c) {
	window.open(c,
		'Podcast',
		'width=460,height=300,scrollbars=no,status=yes');
	}		
	
function OpenIngressos (c) {
	window.open(c,
		'Ingressos',
		'width=480,height=500,scrollbars=yes,status=yes');
	}		

function valida(form) {
	if (form.email.value == "") {
		alert("Digite o email.");
		return false;
	}
	if (form.senha.value == "") {
		alert("Digite a senha.");
		return false;
	}
	
	return true;
}
			
		
//-->	