﻿function OpenPopup(url, height)
{
    window.open(url, "Popup","location=0, status=0, scrollbars=yes, width=450, height=" + height);
}

function ClosePopup()
{
    window.close();
}