﻿function openWindow(file, width, height) {
    var params = 'width=' + width + ',height=' + height + ',scrollbars=yes';
    window.open(file, 'popupwindow', params);
}