﻿
function popme(fileName, top, left, width, height, resize) {
    width = width + 15;
    if (resize == 'no') {
        var resizeParam = ',resize=no'
    }
    window.open(fileName, "", "top=" + top + ",left=" + left + ",toolbars=no,maximize=no" + resizeParam + ",width=" + width + ",height=" + height + ",location=no,directories=no");
}

function mailto(name, domain) {
    document.location = 'mailto:' + name + '@' + domain;
}

