// <![CDATA[

function veryverysecret(who, where, domain) {
	location.href = "mailto:" + who + "@" + where + "." + domain;
}

function popup(url, name, width, height) {
	str = 'height=' + height + ', width=' + width + ', scrollbars=0, status=0, resizable=0';
	str += ', left=' + (screen.width - width)/2 + ', top=' + (screen.height - height)/3;
	win = window.open(url, name, str);
}

// ]]>