/****************************************************/
/*		Desabilita o AutoComplete do camopos		*/
/****************************************************/
var coll = document.all.tags("INPUT");
var i = 0;

while(i < coll.length){
	if(coll[i].type == "text"){
		coll[i].AUTOCOMPLETE = "off";
	}
	i++;
}

/****************************************************/
/*				getElementById()					*/
/****************************************************/
function getElementById(id){
	return document.getElementById(id);
}

/****************************************************/
/*				Desabilita Janela					*/
/****************************************************/
function DesabilitaJanela() {
	var tecla = String.fromCharCode(event.keyCode)
	if ((event.ctrlKey) && (tecla == "n" || tecla == "N")){
		return false;
	}
}

/****************************************************/
/*					Sai do Sistema					*/
/****************************************************/
function logoff(path) {
	window.parent.opener.location.href = path + "logout.php";
	window.parent.close();
}