<!--

function emailPage()
{
var newline='%0d%0a';
var me = document.location.href;

var subject='From the Blueseas web page';
var greeting = "From the Blueseas Web site";
var prompt = " - follow this link";

var a = "<a href=\"mailto:?subject=";
var b = "&body=";
var c = "\"  class=utility title=' Email this Page ' onFocus=\"if(this.blur)this.blur()\" onMouseOver=\"window.status='Email this Page';return true\" onMouseOut=\"window.status='';return true\">Email this Page</a>";

document.write(a + subject + b + greeting + newline + me + prompt + newline + newline + c);

}

//-->
