function SendMeMail(name,text,subject,body)
{
  d="planbvoornederland";
  e=".nl";
  str='<a href="mailto:' + name + '@' + d + e
  if(subject != "")
  {
    str+='?subject=' + subject
    if(body!="")str+="&body=" + body
  }
  str+= '">'
  if(text=="")
  {
    str+= name + '@' + d + e
  }
  else
  {
    str+= text
  }
  str+='</a>'


document.write(str);
};

