﻿function openWindow(strPageName, strWidth, strHeight) {
    newwindow = window.open(strPageName, 'Admin', 'scrollbars=yes,height=' + strHeight + ',width=' + strWidth + ',resizable=yes');
    if (window.focus) { newwindow.focus() }
    return false;
}

