﻿// JScript File

function pop (URL) {
    window.open (URL, 'pop', 'width=640,height=400,menubar=no,directories=no,location=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
}

function PopUpPageResume(url)
{
    var width = 830;
    var height = 800;
    var leftVal = (screen.width - width) / 2;
    var topVal = (screen.height - height) / 2;
       
    window.open(url,'PopUpPageResume','width='+width+',height='+height+',left='+leftVal+',top='+topVal+',scrollbars=2');
}