/**
 * @author Marcelo Aviles, Sintic Bolivia
 */
$(document).ready(init);

function init()
{
	try
	{
		$("#how-text").keyup(showFormData);
	 	$(".text").focus(function(){this.style.borderColor = "#0f82c1";});													
		$(".text").blur(function(){this.style.borderColor = "#EEEEEE";});
	}
	catch(e)
	{
		alert(e);
	}
	
	
}
function showFormData()
{
	$("#how-form-data").slideDown();
}
function hideFormData()
{
	$("#how-form-data").slideUp();
}
function validateFormData()
{
	if($("#agree").attr("checked") == true)
	{
		return true;
	}
	else
	{
		alert("Debe aceptar las normas. Si no ve el boton de aceptar las normas, es porque utiliza Internet Explorer, instalate el Firefox que es gratis y muuuucho mejor. Buscalo en google, tardas 1 minuto en instalarlo.");
		return false;	
	}
	
	
}
