<!-- 
var myWin = null;

    function openWindow2(url,width,height){
            if (!myWin || myWin.closed){ 
var options = "top=100,left=100,width=" + width + ",height=" + height + ",menubar=no,location=no,status=yes,scrollbars=yes,resize=yes,resizable=yes";
                    myWin = open(url, "myWindow", options);
            }else{
                    // update the window
                    myWin.location.href = url;
            }
            // bring window to front
            myWin.focus();
    }
//--> 
