// JavaScript Document
// JavaScript Document

function HideContent(d) {
	$('#'+d).hide('slow');
	//document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
	$('#'+d).show('slow');
	//document.getElementById(d).style.display = "block";
}
function ReverseDisplay(d) {
if(document.getElementById(d).style.display == "none") { $('#'+d).show('slow'); }
else { $('#'+d).hide('slow'); }
}

function mascara_hora(nume){
	if(nume != ""){
		num = new Array(nume);
		if(nume.indexOf(":")=="-1"){
			retorna = nume+":";	
		}
		else if(num[0][1] == ":"){
			retorna = num[0][0]+num[0][2]+":";
		}
		else {
			retorna = nume;
		}
		return retorna;
	}
	return "";
}
