function linkout(url)
{
var confirm_link = confirm ("You are now leaving the GDFG website. Please click OK to leave our site and proceed to the selected website.");
if (confirm_link == true) {window.open(url);}
}

function InsertEmail(name)
{
	if(name=='webmaster')
		document.write('<a href="mailto:webmaster@thegdfg.com">webmaster@thegdfg.com</a>');

	else if(name=='bryan')
		document.write('<a href="mailto:bryan@thegdfg.com">webmaster@thegdfg.com</a>');

	else if(name=='bill')
		document.write('<a href="mailto:bill@thegdfg.com">bill@thegdfg.com</a>');
        
        else if(name=='gdfg')
		document.write('<a href="mailto:gdfg@thegdfg.com">gdfg@thegdfg.com</a>');

        else
                document.write('<a href="mailto:gdfg@thegdfg.com">gdfg@thegdfg.com</a>');
}