function verify() {
        if (confirm("Are you certain that you want to do that?")) {
            return true;
        } else {
            return false;
        }
}

function emaillink()
{
	var emaile;
	emaile=("frank@" + "dolphintrailers.com");
	document.write("<a href='mailto:" + emaile + "'>" + emaile + "</a>" );
}