function enviaCadastro(){
	if(window.document.fmcadastro.nome.value.length>0 &&
	window.document.fmcadastro.email.value.length>0 &&
	window.document.fmcadastro.cidade.value.length>0){
	window.document.fmcadastro.submit();
	}else{
		alert("Obrigatório preenchimento de todos os campos!");
	}
}
function redirect(onde){
if(onde.indexOf("http")!=-1){
	window.location = onde;
}else{
	window.location = getHost()+"/"+onde;
}
}

function popup(){
	window.open('popup.html','','width=550,height=300,scrollbars=no');
}