function UpperCaseWords(str) {
	str = str.split(" ");
	var new_str = new Array();
	for (i = 0; i < str.length; i++) {
		str[i] = str[i].toLowerCase();
		if (str[i]!="do" && str[i]!="da" && str[i]!="de" && str[i]!="dos" && str[i]!="das") {
			new_str[i] = (str[i].substring(0, 1).toUpperCase() + str[i].substring(1, str[i].length));
		} else {
			new_str[i] = str[i];
		}
	}
	return new_str.join(" ");
}
function Cadastro() {
	window.open("Cadastro.aspx","Cadastro","scrollbars=yes,width=550,height=470");
}
function EnviarMensagem(msg) { 
	alert(msg);
}
function Redirecionar(pagina, tempo) {
	var url = "self.location.href = '" + pagina + "'"
	setTimeout(url,tempo * 1000);
}
function OpenWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}
function ToolTipShow(janela, event) {
var wTip = document.getElementById(janela)
	wTip.style.visibility="visible"
}
function Hidden(janela) {
	document.getElementById(janela).style.visibility="hidden"
}