function enviar_formulario(id){

var num;
num=0;
var opciones;
var opcion;
var star;
opciones=$('#commentform').serialize();
opcion=opciones.split('&');
star=opcion[0];
star=star.split('=');

	if($('#author').val()==''){
		$('#author_m').show();
	} else {
		$('#author_m').hide();
		num++;
	}
	if($('#email').val().match(/^[A-Za-z0-9._%-]+@[a-zA-Z0-9.-]+\.[A-Za-z]{2,4}$/)==null){
		$('#email_m').show();
	}  else {
		$('#email_m').hide();
		num++;
	}
	if($('#comment').val()==''){
		$('#comment_m').show();
	} else {
		$('#comment_m').hide();
		num++;
	}
	if(star[0]!='star1'){
		alert('Es necesario puntuar para poder comentar.');
		$('#star_m').show();
	} else {
		$('#star_m').hide();
		num++;
	}
	
	if(num=='4'){
	//alert('ok');
		$.post("wp-content/plugins/idgl_comentarios/ajax.php", { parametros: $('#commentform').serialize(), accion:'comentario' },
			function(data) {
			$('#respond').html(data);
			// alert("Data Loaded: " + data);
			 //location.reload(true)
		});
	}
//alert($('#commentform').serialize());

}
