﻿// JScript File
function openWindow(name, width, height, scroll) {
    var win = window.open('', name, 'toolbar=0,height='+height+', width='+width+',scrollbars='+scroll);
    win.focus();
    return win;
}

