﻿var theURL = '/RedirectPopup.aspx';
var width = 600;
var height = 400;
function popWindow(theURL) {
    //newWindow = window.open(theURL, 'newWindow', 'toolbar=no,menubar=no,resizable=no,scrollbars=no,status=no,location=no,left=450,top=300,width=' + width + ',height=' + height);
    newWindow = window.open(theURL, 'newWindow', 'toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,location=yes,left=375,top=200,width=' + width + ',height=' + height);
}
