
	<!--
		function openWindow(urlname) {
			var newWindow;
		    // alert(urlname);
			newWindow = window.open(urlname,'newWin','toolbar=yes,location=yes scrollbars=yes');
		};
		
		function getColHeight(){
			//retrieves the height of the border line column
			var colHeight = leftLineColumn.offsetHeight;
			return colHeight;
		}
		
		function leftLineUpdate(){
			//   This function determines the height of the row 'leftLineColumn' and 
			//	 dynamically resizes the image 'leftLineImage' to that height

			var newImgHeight = getColHeight();
			leftLineImage.height=newImgHeight;
		}
		//-->
