// ================================================================================================
// Called by: NewWindow(this.href,'ThisPage','700','500','yes','yes');return false;
// ================================================================================================
   function NewWindow(a,b,w,h,c,d){if(a!=0){var e=null;var f=(screen.width-w)/2;var g=(screen.height-h)/2;var i='height='+h+',';i+='width='+w+',';i+='top='+g+',';i+='left='+f+',';i+='scrollbars='+c+',';i+='resizable=no,';i+='directories=no,';i+='location=no,';i+='toolbar=no,';i+='menubar=no,';i+='status='+d;e=window.open(a,b,i);if(parseInt(navigator.appVersion)>=4){e.window.focus()}}}