//	-------------------------------------------------------------------------
//				Bluetrane
//				Version 1.0
//			code by Carl Heinrichs --	brutal_smurf@yahoo.com
//
//	This program is Copyright 2002 by Carl Heinrichs.  You may adapt
//	this Test Page for your Web pages, provided these opening credit
//	lines (down to the lower dividing line) are in your outliner HTML document.
//	You may not reprint or redistribute this code without permission from
//	the author.
//	-------------------------------------------------------------------------


//
// This function prints out an email link on the document.
//
function PrintEmailLink(name,subject,the_class) {

var zone = 'org';
var domain = 'WheelOfTime';

//
// This the HTML markup that contains the most of the pages information.  A markup string is
// constructed called the_document.  Then the_document is written to the browser document.
//
var the_document = '';
the_document += '<a href="mailto:' + name + '@' + domain + '.' + zone +'?subject=' + subject + '" class="' + the_class + '">' + name + '@' + domain + '.' + zone + '</a>';

document.write(the_document);

}

//
// This function prints out an email link on the document to contact the HTML author.
//
function EmailAuthor(subject) {

var name = 'grady'
var zone = 'org';
var domain = 'WheelOfTime';

//
// This the HTML markup that contains the most of the pages information.  A markup string is
// constructed called the_document.  Then the_document is written to the browser document.
//
var the_document = '';
the_document += '<a href="mailto:' + name + '@' + domain + '.' + zone +'?subject=' + subject + '" class=whiteLB><b>Email Jur Grady</b></a>';

document.write(the_document);

}
