<!--
var newWinObj;
var windowopen=0;
var oldURL;

function openWindow(URL,width,height,scroll){
    path = "";
    if (windowopen==0){
        windowopen=1;
        newWinObj = window.open(path+URL,'newWin','toolbar=1,location=1,directories=0,status=1,menubar=0,scrollbars='+scroll+',resizable=1,copyhistory=0,width='+width+',height='+height)
        oldURL = URL;
        newWinObj.focus();
        //newWinObj.moveTo(0,0);
    }else{
    if (newWinObj.closed) {
        windowopen=0;
        openWindow(URL,width,height,scroll);
    }else {}
    if (URL != oldURL) {
        oldURL = URL;
        newWinObj.document.location.href=URL;
        newWinObj.focus();
        //newWinObj.moveTo(0,0);
        //newWinObj.resizeTo(width,height);
    }else{
        newWinObj.focus();
        //newWinObj.moveTo(0,0);
        //newWinObj.resizeTo(width,height);
        }
    }

}
// -->