﻿function OpenPopup(e, url, name, width, height) {
    if (!e) var e = window.event;

    var left = (screen.availWidth / 2) - (width / 2);
    var top = (screen.availHeight / 2) - (height / 2);

    var params = "width=" + width + ",height=" + height + ",top=" + top + ",left=" + left + ",directories=no,location=no,menubar=no,personalbar=no,resizable=no,scrollbars=yes,status=no,titlebar=no,toolbar=no";

    var win = window.open(url, name, params);

    //win.moveTo(left, top);
    win.focus();

    e.cancelBubble = true;
    e.returnValue = false;

    if (e.stopPropagation) {
        e.stopPropagation();
        e.preventDefault();
    }

    return false;
}