//--------------------------------------------------------------------------------------
//-- 
//-- Obfuscate email addresses to avoid spiders adding them to spam lists
//--
//--------------------------------------------------------------------------------------

var reg = "registrar";
var web = "webmaster";
var pres = "president";
var rhs = "cedarhillskp.org";
        
function print_registrar() 
{
    document.write("<a href=\"mailto");
    document.write(":" + reg + "@");
    document.write(rhs + "\">" + reg + "@" + rhs + "<\/a>");
}
function print_webmaster() 
{
    document.write("<a href=\"mailto");
    document.write(":" + web + "@");
    document.write(rhs + "\">" + web + "@" + rhs + "<\/a>");
}
function print_president() 
{
    document.write("<a href=\"mailto");
    document.write(":" + pres + "@");
    document.write(rhs + "\">" + pres + "@" + rhs + "<\/a>");
}
