<script type="text/javascript" src="js/jquery-1.3.2.js">
<script type="text/javascript" src="js/jquery.wysiwyg.js">
<script type="text/javascript" src="js/jquery-1.4.2.min.js">
<script type="text/javascript" src="js/jquery-ui-1.8.4.custom.min.js">

<script LANGUAGE="JavaScript">


<script language="JavaScript">
function dadosok()
{
var texto, mensagem, erro;

mensagem = 'Campos imcopletos .....'
erro=false;

// teste campo nome
texto = document.fale.usuario.value;
if (texto.length == 0)
{
mensagem+='\n- usuário';
erro=true;
}


// teste campo senha
texto = document.fale.senha.value;
if (texto.length == 0)
{
mensagem+='\n- Senha';
erro=true;
}



if (erro)
alert(mensagem);
else
;



return !(erro);

}