/*

Spam protection of mailto: -links
Produced by Jonnie Be Good, 2006

Insert line below in your HTML document (Replace RECIPIENT and LINKTEXT)

<a href="javascript:linkmail('RECIPIENT')">LINKTEXT</a>

*/


var domain
var subject

// Put your domain name below, example: hotmail.com

domain = "panoramabild.se"

// Put desired subject here (optional)

subject = "Från hemsidan"

function linkmail(to)
  {
  window.location.href="mailto:" + to + '@' + domain + "?subject=" + subject
  }




