<!--
var aNewWindow = null;

function GWT_close_Orphans() { //v1.0 - GWT July 2002
if (aNewWindow && !aNewWindow.closed) { aNewWindow.close();
}}

function GWT_openBrWindow(theURL,winName,features) { //v2.0 - GWT July 2002
if (!aNewWindow) { aNewWindow = window.open(theURL,winName,features);
} else { 
              if (aNewWindow.closed) { aNewWindow = window.open(theURL,winName,features);
              }  else  { 
                          if (aNewWindow !== winName) { aNewWindow.close();
                                                        aNewWindow = window.open(theURL,winName,features);
                          } else { aNewWindow.focus();
                          }
              }
}}
//-->

