/*CFIHEADER*/

function topoinputpesquisa_onkeypress() {
	if (window.event.keyCode == 13)
		__doPostBack('ctrlCFIHeader$lbPesquisar','');
}

window.attachEvent('load', function() {
		/*CLEAN TEXTBOX PesquisaCampo*/  
		$$('input.topoinputpesquisa').each(function(el, i){
			el.addEvent("focus",function(event){
				clearDefault(el);
				el.addClass('focus');
			});
			el.addEvent("blur",function(event){
				restoreDefault(el);
				if(el.value == ""){
					el.removeClass('focus');
				}
			});
		});
	});
