<!--
///////////////MAIL/////////////////
//m(name,subject,body,server)
function m(name)
{
var mi="to";
var host="";
var fi="mail";
var ri=":";
var sbj="";
var bdi="";
if (arguments[1]) sbj="?subject="+arguments[1];
if (arguments[2]) {if (sbj) bdi="&";bdi=bdi+"body="+arguments[2];}
if (arguments[3]) 
{
host=arguments[3];
} else
{
host=location.href;
host=host.substr(host.indexOf("//")+2,host.length);
host=host.substr(0,host.indexOf("/"));
if (host.indexOf("www.")!=-1) host=host.substr(host.indexOf("www.")+4,host.length);
}
location.href=fi+mi+ri+name+unescape("%40")+host+sbj+bdi;
}
//pm(name,server)
function pm(name)
{
var host="";
if (arguments[1]) 
{
host=arguments[1];
} else
{
host=location.href;
host=host.substr(host.indexOf("//")+2,host.length);
host=host.substr(0,host.indexOf("/"));
if (host.indexOf("www.")!=-1) host=host.substr(host.indexOf("www.")+4,host.length);
}
document.write(name+unescape("%40")+host);
}
///////////////END MAIL/////////////////
//-->