var sending_image = new Image;
sending_image.src = "images/sending_es.gif";

/*ORIGINAL:function imgRateBook(identificador)
{
	var capa_id = "capa" + identificador;
	var select_id = "voto" + identificador;
	var img_id = "imgVoto" + identificador;
	var value = document.getElementById(select_id).value;
	var img = document.getElementById(img_id);
	var capa = document.getElementById(capa_id);
	window.focus();
    // capa.style.display = "none";
	if (value!=-1)
	{
	  capa.innerHTML = '<span class="texto_12"><strong>'+value+'</strong></span>';
	  img.alt = "";
	  img.src = sending_image.src;
	  img.src = "libro-votar.php?id=" + identificador + "&voto=" + value;
	}
}*/
function imgRateBook(identificador, valor)
{
	var capa_id = "capa" + identificador;
	var select_id = "voto" + identificador;
	var img_id = "imgVoto" + identificador;
	var value = valor;
	var img = document.getElementById(img_id);
	var capa = document.getElementById(capa_id);
	window.focus();
    // capa.style.display = "none";
	if (value!=-1)
	{
		if (valor==0) cadenaVoto = '<strong><font style=" font-size:12px;">0</font></strong>';
		if (valor==1) cadenaVoto = '<strong><font style=" font-size:12px; ">1</font></strong>';
        if (valor==2) cadenaVoto = '<strong><font style=" font-size:12px;">2</font></strong>';
        if (valor==3) cadenaVoto = '<strong><font style=" font-size:12px; ">3</font></strong>';
        if (valor==4) cadenaVoto = '<strong><font style=" font-size:12px; ">4</font></strong>';
        if (valor==5) cadenaVoto = '<strong><font style=" font-size:12px; ">5</font></strong>';
		
		
		if (valor==0) cadenaVoto2 = '<font color="#029448" style=" font-size:10px; font-weight:bold; text-transform:uppercase">P&eacute;simo</font>';
		if (valor==1) cadenaVoto2 = '<font color="#029448" style=" font-size:10px; font-weight:bold; text-transform:uppercase">Malo</font>';
        if (valor==2) cadenaVoto2 = '<font color="#029448" style=" font-size:10px; font-weight:bold; text-transform:uppercase">Regular</font>';
        if (valor==3) cadenaVoto2 = '<font color="#029448" style=" font-size:10px; font-weight:bold; text-transform:uppercase">Bueno</font>';
        if (valor==4) cadenaVoto2 = '<font color="#029448" style=" font-size:10px; font-weight:bold; text-transform:uppercase">Muy bueno</font>';
        if (valor==5) cadenaVoto2 = '<font color="#029448" style=" font-size:10px; font-weight:bold; text-transform:uppercase">Excelente</font>';
	  
	  img.alt = "";
	  img.src = sending_image.src;
	  new Ajax.Request("libro-votar.php?id=" + identificador + "&voto=" + value);  
	  capa.innerHTML = cadenaVoto + '<br><img src="images/libroVoto' + value + '.gif" width="100" height="22" border="0" usemap="#Map'+identificador+'" name="' + select_id +'" id="' + img_id + '"/><br>' + cadenaVoto2;
	}
	
	
}


function imgRateBook2(identificador, valor)
{
	var capa_id = "capa" + identificador;
	var select_id = "voto" + identificador;
	var img_id = "imgVoto" + identificador;
	var value = valor;
	var img = document.getElementById(img_id);
	var capa = document.getElementById(capa_id);
	window.focus();
    // capa.style.display = "none";
	if (value!=-1)
	{		
		if (valor==0) cadenaVoto = '<strong><font style=" font-size:12px; ">0</font></strong>';
		if (valor==1) cadenaVoto = '<strong><font style=" font-size:12px; ">1</font></strong>';
        if (valor==2) cadenaVoto = '<strong><font style=" font-size:12px; ">2</font></strong>';
        if (valor==3) cadenaVoto = '<strong><font style=" font-size:12px; ">3</font></strong>';
        if (valor==4) cadenaVoto = '<strong><font style=" font-size:12px; ">4</font></strong>';
        if (valor==5) cadenaVoto = '<strong><font style=" font-size:12px; ">5</font></strong>';
		
		
		if (valor==0) cadenaVoto2 = '<font color="#029448" style=" font-size:10px; font-weight:bold; text-transform:uppercase">P&eacute;simo</font>';
		if (valor==1) cadenaVoto2 = '<font color="#029448" style=" font-size:10px; font-weight:bold; text-transform:uppercase">Malo</font>';
        if (valor==2) cadenaVoto2 = '<font color="#029448" style=" font-size:10px; font-weight:bold; text-transform:uppercase">Regular</font>';
        if (valor==3) cadenaVoto2 = '<font color="#029448" style=" font-size:10px; font-weight:bold; text-transform:uppercase">Bueno</font>';
        if (valor==4) cadenaVoto2 = '<font color="#029448" style=" font-size:10px; font-weight:bold; text-transform:uppercase">Muy bueno</font>';
        if (valor==5) cadenaVoto2 = '<font color="#029448" style=" font-size:10px; font-weight:bold; text-transform:uppercase">Excelente</font>';
		
	  img.alt = "";
	  img.src = sending_image.src;
	  new Ajax.Request("relato-votar.php?id=" + identificador + "&voto=" + value);  
	  capa.innerHTML = cadenaVoto + '<br><img src="images/libroVoto' + value + '.gif" width="100" height="22" border="0" usemap="#Map'+identificador+'" name="' + select_id +'" id="' + img_id + '"/><br>' + cadenaVoto2;
	}
}

/*function imgRateBook2(identificador)
{
	var capa_id = "capa" + identificador;
	var select_id = "voto" + identificador;
	var img_id = "imgVoto" + identificador;
	var value = document.getElementById(select_id).value;
	var img = document.getElementById(img_id);
	var capa = document.getElementById(capa_id);
	window.focus();
    // capa.style.display = "none";
	if (value!=-1)
	{
	  capa.innerHTML = '<span class="texto_12"><strong>'+value+'</strong></span>';
	  img.alt = "";
	  img.src = sending_image.src;
	  img.src = "relato-votar.php?id=" + identificador + "&voto=" + value;
	}
}*/