function popup(url, width, height) {
    width = parseInt(width) + 25;
    height = parseInt(height) + 25;
    var features = "width=" + width + ",height=" + height + ",scrollbars=no,menubar=no,,resizable=yes,toolbar=no,location=no,status=no";
    window.open(url, '', features);
}
