<!--

function popupWindow(win,h,w) {
    var options = 'height=' + h + ',width=' + w + ',resizable,scrollbars';

    var newWindow = window.open(win,'newWindow',options)
    newWindow.focus();
}
// -->
