﻿function OpenWindow(url, width, height)
{
window.open(url,'new_window','width=' + width + ',height=' + height + ',left=300,top=300,resizable=yes,scrollbars=no,toolbar=no')
}

function OpenWindowSB(url, width, height, sb) {
    window.open(url, 'new_window', 'width=' + width + ',height=' + height + ',left=300,top=300,resizable=yes,scrollbars=yes,toolbar=no')
}