// Function to obfuscate e-mail-adresses
//
function frob(msg)
{
  msg = msg.replace(/[^A-Z.@]/g, "").toLowerCase();
  document.write("<a class='stdtext' href=mailto:" + msg + ">" + msg + "</a>");
}

var cgipath = "";