	//Opens TargetDoc in a new window. The intWIdth and intHeight parameters determine window size.
	//intWidthOffset and intHeightOffset determine placement on the screen, ShwScr takes a value
	//of yes or no (case sensitive), to determine if the scroll bars are displayed.
	function openBrowse(TargetDoc, intWidth, intHeight, intWidthOffset, intHeightOffset, ShwScr) {
	  window.event.returnValue = false;
	  var strAgent=navigator.userAgent;
	  var xCoord;
	  var yCoord;
	  if (strAgent.indexOf('Mozilla/3')==-1 && strAgent.indexOf('MSIE 3')==-1)
	  { 
		 xCoord=screen.width/2 - intWidthOffset;
		 yCoord=(screen.height/2) - intHeightOffset;
	  }
	  tmp=open(TargetDoc,'Calendar','top='+ yCoord +',left=' + xCoord +',directories=no,menubar=no,scrollbars=' + ShwScr +',resizable=no,location=no,toolbar=no,width=' + intWidth +',height=' + intHeight +'');
	  if (strAgent.indexOf('MSIE 3')==-1) {
	  tmp.focus();
	  }
	}
