<!--
var winNew = null;
function openClose(URL,w,h,s) {
    winNew = window.open(''+URL+'', 'winNew','height='+w+',width='+h+',left=20,top=20,resizable=0,scrollbars='+s+'');
    if (winNew != null) {
        if (winNew.opener == null) {
        winNew.opener = self;
        }
    }
}
// -->