/*
Funções globais do site
*/


//altera o bgcolor do elemento do formulario
function changeBgColor(id){   
    var obj = document.getElementById(id);
	obj.style.background = "#E8E8FF";
	obj.style.border = "width:12px";
}


//altera o bgcolor de celulas
function changeBgColorCelula(id){  

    var obj1 = document.getElementById(id);
	
	obj1.style.border = "solid";
	obj1.style.borderWidth = '1px';
	obj1.style.borderColor = 'black';
}

function defaultBgColorCelula(id, color){  

    var obj1 = document.getElementById(id);
	
	obj1.style.border = "solid";
	obj1.style.borderWidth = '1px';
	obj1.style.borderColor = color; 
}

function defaultBgColor(id){   
    var obj = document.getElementById(id);
	if(obj.name!='focus'){
	    obj.style.backgroundColor = "white";
	}	
}


//funcao parar editar o tamanho de texto
function mudarTamanho(tipoId){
	var table = document.getElementById("conteudo");
	if(tipoId=="aumentar") {
		 table.style.fontSize = "14px"; 
	}else{
		 table.style.fontSize = "12px";
	}
}

//funcao para alterar cursor
function cursorDeLink(tipoId){
	var tag = document.getElementById(tipoId);
	tag.style.cursor = "pointer";
}

function ismaxlength(obj){
   var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : ""
   if (obj.getAttribute && obj.value.length>mlength)
   obj.value=obj.value.substring(0,mlength)
}

function testaCampoPesquisa(id){
	
	var obj = document.getElementById(id);
	if(obj.value == '' || obj.value == null) obj.value = 'título da notícia...';
}
