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

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

function emailCloak() {
	email = document.getElementById("emailCloak");
	var a = document.createElement("a");
	a.href = "mailto:info@teatroabrego.com";
	var address = document.createTextNode("info@teatroabrego.com");
	a.appendChild(address);
	email.appendChild(a);
}


window.onload = init;