function OpenWindow(url, width, height) {
    var options = "height=" + height + ", width=" + width;
    window.open(url, "Popup", options);
}

