$(document).ready(function(){
	try
	{
		if ($('#btnRegistro').length)
		{
			$('#btnRegistro').click(function(){
				location = 'registrate.php';
			});
		}

		if ($('#usr').val() != '' )
			$('#pwd').focus();
		else
			$('#usr').focus();
	}
	catch(e){}
});
