/* 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 Webmaster Kevin (kduhe@kzla.com) to handle multiple
addresses on the same page. 8/9/2005 

Modified by Ric Raftis (info@bushsong.com.au) to include variable Subject 6/11/05 */

function blocker(name) 
{
var domain ="wheretonow.com.au";
	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 ="wheretonow.com.au";
    document.write('<a href="mailto:' + name + '@' + domain + '?subject=' + subject + '">' + name + '@' + domain + '</a>');
}

