    function MailTo(Name, Host)
    {
      window.location = 'mailto:' + Name + '@' + Host;
    }
    function OpenWindow(name,width,height){
       width = width + 30;
       height = height + 30;
       window.open("images/"+name,"_blank","width="+width+",height="+height+"");
    }
