<!--// browser detection blockvar agt=navigator.userAgent.toLowerCase(); var is_major = parseInt(navigator.appVersion); var is_ie = (agt.indexOf("msie") != -1);var is_ie5 = (is_ie && (is_major == 4) && (agt.indexOf("msie 5.0")!=-1) ); var putItHere = null; // following function takes 2 arguments// 1. thePage - represents the html page to display in the new window// 2. postions - represents whether the designated page should be displayed // in the "right" or "left" windowfunction auxilaryWindow(thePage, position) {  if(position=='right'){    var w = self.screen.width;    var leftPos = w-620;    putItHere = window.open(thePage,'RightWindow','top=100,left='+leftPos+',resizable=yes,scrollbars=yes,width=600,height=400');        if(is_ie5){	   setTimeout('putItHere.focus()',500); // need to delay for .5 seconds prior to focus - DTL    } else {      putItHere.focus();    }  } else {    putItHere = window.open(thePage,'LeftWindow','top=0,left=0,resizable=yes,scrollbars=yes,width=600,height=400');    if(is_ie5){      setTimeout('putItHere.focus()',500); // need to delay for .5 seconds prior to focus - DTL      } else {      putItHere.focus();    }  }}//-->