﻿// JScript File

function create_popup(href, wd, hg) {
    var new_popup;

    var lf = screen.availWidth / 2 - wd / 2;
    var tp = screen.availHeight / 2 - hg / 2;

    new_popup = window.open(href, '_blank', 'width=' + wd + ',height=' + hg + ',top=' + tp + ',left=' + lf + ',toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no');
}