<!-- Begin


    
    function mailto(domain,user) 
    { 
        document.location.href = "mailto:" + user + "@" + domain; 
    }

    function PopupWindow(href, w, h, settings)
    {
        leftpos = (screen.width) ? (screen.width-w)/2 : 0;
        toppos = (screen.height) ? (screen.height-h)/2 : 0;
        settings = 'height='+h+',width='+w+',top='+toppos+',left='+leftpos+' '+settings;
        window.open(href, 'popupwindow', settings)
    }
//  End -->