﻿// JScript File
function ShowPopup(url, width, height) {
  if (width == null)
    width = 300;
  if (height == null)
    height = 300;
  window.open(url, 'popup', 'height=' + height + ',width=' + width + ',location=no,menubar=no,titlebar=no,status=no,toolbar=no,resizable=no,scrollbars=yes');
}
