﻿// JScript File

function openPopup (pagePath, title)
{
    var w = window.open(pagePath,title,'Width=500,Height=480,menubar=0,toolbar=0,resizable=1,scrollbars=1');
}

function openFile (pagePath)
{
    var w = window.open(pagePath);
}

function closePopupWithPostBack(sender)
{
    window.opener.__doPostBack('sender','refresh');
    self.close();
}
