﻿function init() {
	//emailCloak();
}

function gotoURL(location) {
	document.location=location;
}

function emailCloak() {
	email = document.getElementById("emailCloak");
	var a = document.createElement("a");
	a.href = "mailto:libreria@libreriagil.com";
	var address = document.createTextNode("e-mail");
	a.appendChild(address);
	email.appendChild(a);
}


window.onload = init;