8
| <![CDATA[<script type="application/javascript">
function hidden()
{
document.body.style.overflowX = "hidden";
}
function bookmarksite( title, url )
{
if( window.sidebar ) // firefox
{
window.sidebar.addPanel( title, url, "" );
}
else if( window.opera && window.print ) // opera
{
var elem = document.createElement( "a" );
elem.setAttribute( "href", url );
elem.setAttribute( "title", title );
elem.setAttribute( "rel", "sidebar" );
elem.click();
}
else if( document.all ) // ie
{
window.external.AddFavorite( url, title );
}
}
function submete()
{
$( "#error" ).empty().hide();
if( $( "input[name=login]" ).val() == "" )
{
$( "#error" ).append( "Informe o login do usuário!" ).show();
$( "input[name=login]" ).focus();
}
else if( $( "input[name=senha]" ).val() == "" )
{
$( "#error" ).append( "Preencha a senha corretamente!" ).show();
$( "input[name=senha]" ).focus();
}
else if( $( "input[name=autimagem]" ).val() == "" )
{
$( "#error" ).append( "Preencha o número de autenticação corretamente!" ).show();
$( "input[name=autimagem]" ).focus();
}
else
{
$( "#formulario" ).submit();
}
}
</script>]]>
|