﻿function opensmallwindow(page, sContent, height, width) {
    if (height == '')
        height = 300
    if (width == '')
        width = 525

    var sOpts = "resizable=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,height=" + height + ",width=" + width

    var OpenWin = window.open(page, "smWindow", sOpts);
    if (OpenWin != null) {
        if (sContent != '') {
            OpenWin.document.write(sContent)
            OpenWin.document.close()
        }
        OpenWin.focus()
    }

}