﻿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')
}

function OpenWindowTemp(url, width, height, name)
{
window.open(url, name, 'width=' + width + ',height=' + height + ',left=50,top=50,resizable=yes,scrollbars=yes,toolbar=no,location=no')
}
