// Leandro Boldrini Acosta

function buscar(){var campo=document.frmbusca.palavra.value;if(campo.length<3){alert('O limite mínimo para efetuar a busca são de 3 caracteres!');document.frmbusca.palavra.focus();return false;}
else
{if(campo=='Buscar Produto')
{campo='';document.frmbusca.palavra.focus();return false;}
else{ajaxForm('conteudo','frmbusca');}}}
function disableEnterKey(e)
{var key;if(window.event)
key=window.event.keyCode;else
key=e.which;if(key==13)
return false;else
return true;}
function orienta(){var campo2=document.frmbusca.palavra.value;if(campo2=='Buscar Produto')
{document.frmbusca.palavra.value='';}}
function orientablur(){if(document.frmbusca.palavra.value=='')
{document.frmbusca.palavra.value='Buscar Produto';}}
