/* Copyright (c) 2003 Jock Dempsey, anvilfire.com ALL RIGHTS RESERVED */
/* ================================================================== */
/*   This is sample code for public use but not for redistribution    */
/* ================================================================== */

function JD_sendthemail() 
    {

	var part1 = 'myname';

	var part2 = 'myhost';

	var part3 = 'hostextension';

    /* replace myname, myhost, hostextension with the correct strings */

    var address = part1 + '@' + part2 + '.' + part3;

	location.href="mailto:"+address;
	
    }



