////////////////////////////////////
// No Spam email
////////////////////////////////////
function noSpamMailto (s) {
//this is before the '@'
  var x = "tess"
//this is the server
  var y = "roomtomanoeuvre"
//its location - .com or .com.au
  var z = "com"
  var xyz = x+"@"+y+"."+z
  if (s != "")
    subject = "?subject="+s
  else
    subject = " "

  document.write ('<a href="mailto:'+xyz+subject+'" title=\"Please contact us\">tes[at]roomtomanoeuvre.com</a>')
}

// place this in the body where you want the link
 
