function mailto(domain,user) {
    document.location.href = "mailto:" + user + "@" + domain;
}

function PopupWindow(href, w, h, settings) {
            settings = 'height='+h+',width='+w+settings;
            window.open(href, 'popupwindow', settings)
        }
