/* This JavaScript (Email Spider Stumper) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting
-------------------------------------------------------------------
Modified by Jim Degerstrom (info@jimdegerstrom.com) for custom variables 12/13/06 */

function blocker(name) 
{
var domain ="certified911.com";
	document.write('<a href="mailto:' + name + '@' + domain + '">' + name + '@' + domain + '</a>');
}

// This script adds a subject field to the email.

function blockersubject(name,subject)
{
    var domain ="certified911.com";
    document.write('<a href="mailto:' + name + '@' + domain + '?subject=' + subject + '">' + name + '@' + domain + '</a>');
}

//  This script is for using as an "Email Me" or like in a menu system.

function blocker2(name,text)
{
    var domain ="certified911.com";
    document.write('<a href="mailto:' + name + '@' + domain + '">' + text + '</a>');
}

//  This script allows the adding of a subject, but also displayable text for a menu system.
function blockersubj2(name,subject,text)
{
    var domain ="certified911.com";
    document.write('<a href="mailto:' + name + '@' + domain + '?subject=' + subject + '">' + text + '</a>');
}
//--------------------------------------------------------------------------------------------------