// JavaScript Document

var aba_select = "";

function select_aba(ab){
	deselect_aba();
	aba_select = ab;
	document.getElementById(ab).style.borderBottomColor = "#FFFFFF";
	//if(navigator.appName == "Microsoft Internet Explorer")
		//document.getElementById("principal").focus;
	//else
		//blur();
	//if(navigator.appName != "Microsoft Internet Explorer")		
	//document.getElementById("rodape").focus();
		
	/*
	*	trabalhando com ajax
	*/
	//request = criar_request();
	//alert(request);
	enviar_aba(ab);
}

function deselect_aba(){
	if(aba_select != "")
		document.getElementById(aba_select).style.borderBottomColor = "#BAB891";
}