﻿// JScript File



//-------------------------------------------------
function openPopup(url,width,height)
{
    var a_int_windowWidth = 600;
    var a_int_windowHeight = 700;

    var int_windowLeft = (screen.width - a_int_windowWidth) / 2;
    var int_windowTop = (screen.height - a_int_windowHeight) / 2;
  
    window.open(url, null, "height="+ height +",width="+ width +",top="+ int_windowTop + ",left=" + int_windowLeft +",status=yes,toolbar=no,scrollbars=yes,location=no,menubar=no,resizable=yes");
}
//-------------------------------------------------

