function checkForm(f) 
{	
	ERROR = "";
	var name = document.getElementById('name').value; 
	var email = document.getElementById('email').value;
	var condiciones = document.getElementById('condiciones').checked;	
	
	if (name == '' || name == ' ') {
		document.getElementById('name').style.border = "2px solid #CC0000" ;
		ERROR += "Por favor escriba su nombre\n"; 
	}
	if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(email))) {
		document.getElementById('email').style.border = "2px solid #CC0000" ;
		ERROR += "Ingresa una direccion de email valida\n";
	}
	if (condiciones == false) {
		document.getElementById('condiciones').style.border = "2px solid #47F33C" ;
		ERROR += "No has leido y aceptado nuestras condiciones\n"; 
	}
	if (ERROR == "") { 
	window.open("http://www.juegodepoker.es/reviews/email.php?name="+name+"&email="+email+"&condiciones="+condiciones, "Bonos de Poker", "width=300,height=120,top=200,left=200,toolbal=no,location=no,directories=no,status=no,menubar=no=scrollbars=no,resilable=no") ;
	document.getElementById('divmail').style.display = "none" ;
	}
	else{
		alert(ERROR);
	}
}

