function showNCP()
{    
    image_div = document.getElementById("image");
    image = document.createElement("img");
    image.setAttribute("src", "images/ncp.png");
    image.setAttribute("id", "ncp_image");
    image_div.appendChild(image);
}
function removeNCP()
{
    var image_div = document.getElementById("image");
    image_div.removeChild(document.getElementById("ncp_image"));
}
function mailMe(sDom, sUser){
  return("mail"+"to:"+sUser+"@"+sDom.replace(/%23/g,"."));
}
