cuantos = 0;
function InsertItem(session, cod)
{
img_temp = new Image();
img_temp.src = "anyadir_carro.php?" + session + "&cod=" + cod;
img_doc = document.getElementById("img_carro" + cod);
img_doc.src = img_temp.src;
img_doc.alt = "Libro ya añadido";
anchor_carro = document.getElementById("a_carro" + cod);
anchor_carro.href = "javascript:;";

num_img = document.getElementById("cuantos_img");
num_img.src  = "/images/micesta.jpg";

num_items = document.getElementById("cuantos");
num_items.innerHTML  = ++cuantos;
alert ("Libro añadido provisionalmente. \nPodrá revisar su carro antes de realizar la compra");
}

function OpenWindowSendMail(url){
	var props = "toolbar=no,menubar=no,scrollbars=no,top=100,left=100,height=250,width=400";
	window.open(url,"",props)
}

function QuitarCorreo(){
	if (document.forms['boletin'].done_email.value == 'n'){
		document.forms['boletin'].done_email.value = 's';
		document.forms['boletin'].email.value = "";
	}

}

