// util.js - global javascript functions

// mailaddress - obscure email address, making it harder for spambots to harvest
function mailaddress (name, domain)
{
 newWindow = window.open ("http://austindeafevents.com/")
 newWindow.location.href = "mailto:" + name + "@" + domain;
}
