function limpar(el){
	document.getElementById(el).value = "";	
	document.getElementById(el).style.color = "#333333";	
}
function validaBusca(){			
	d = document.formBusca;
	if (d.key.value == "" || d.key.value == "Busca..."){
		alert("Digite sua busca!");
		d.key.focus();
		return false;
	}
	return true;
}
function home(){
	window.location = "http://www.oabjoinville.org.br/home";	
}

function buscar(){
	
	if(validaBusca()){
		var word = document.getElementById("key").value;
		var Url = "http://www.oabjoinville.org.br/busca/"+word;
		//to IE6
		setTimeout(function()
		{
			window.location = Url;
		}, 0);
	}	
}