﻿function iniciar() {
	if (document.getElementById("frmSiteGratis")) {
		var r = new Restrict("frmSiteGratis");
		r.field.codigo = "\\d.";
		r.mask.codigo = "###.###.###.####";
		
		r.onKeyRefuse = function(o, k){
			o.style.backgroundColor = "#fdc";
		}
		r.onKeyAccept = function(o, k){
			if(k > 30)
				o.style.backgroundColor = "#FFF";
		}
		r.start();
	
		var f = document.forms[0];
		addEvent( f, 'submit', function() { return enviar() } )
	}
}

function enviar() {
	var erros = "";
	with(document.forms[0]) {
		if (codigo.value == "") {
			erros += " - Digite o seu Código de Indicação MegaBônus\n";
		} 

		if (erros != "") {
			alert("Para enviar, corrija o(s) erro(s) abaixo: \n\n" + erros + "\n");
			return false;
		}
		else {
			return true;
		}
	}
}

addEvent(window, 'load', iniciar);