<!--
function replaceZ(entry,out) {
  temp = "" + entry;
	while (temp.indexOf(out)>-1) {
		pos=temp.indexOf(out);
		temp = "" + (temp.substring(0, pos) + "%" + temp.substring((pos + out.length), temp.length));
	}
  return temp;
}

function writem(m,style) {
  writemp(m,style,"");
}

function writemp(m,style,params) {
  zeichen = new Array("g","l","q","m","z");
  for(var i=0;i<zeichen.length;i++) {
    m=replaceZ(m,zeichen[i]);
  }
  if(style==1) {
    document.write("<a href=\"mailto:"+unescape(m)+params+"\">"+unescape(m)+"</a>");
  }
  else if(style==2) {
    document.write("<a href=\"mailto:"+unescape(m)+params+"\">");
  }
  else {
    document.write(unescape(m));
  }
}

-->
