<!--

		var bV=parseInt(navigator.appVersion);
		NS4=(document.layers) ? true : false;
		IE4=((document.all)&&(bV>=4))?true:false;
		ver4 = (NS4 || IE4) ? true : false;


		//Cross browser, if the cancelBubble does not exists in W3C DOM model, only in IE. 
		//This does not cause errors in non IE browser and it's W3C DOM compatible using the stopPropagation method
		//Only "Netscape 4" browser uses propagation the other way round( therefore not compatible ).
		//the while is for the IE on Mac which is buggy as usual
		
		function stopEventPropagation(evt){			
			
			var w3cDom = true;

			if ( window.event && window.event.cancelBubble !== null ) { w3cDom = false; }				
			
			if (w3cDom == true) { if ( evt.stopPropagation ) evt.stopPropagation(); }
			else { if ( !window.event.cancelBubble ) window.event.cancelBubble = true;  }
			
			
		}

		function rowOver(evt,rowID,color,msg,tagID){ rowOver(evt,rowID,color,msg,tagID,false); }
		function rowOut(evt,rowID,color,msg,tagID){ rowOut(evt,rowID,color,msg,tagID,false); }
							  
		function rowOver(evt,rowID,color,msg,tagID,propagation){						
			
			window.status = msg;
			document.getElementById(rowID).style.backgroundColor = color;
			if ( tagID != '' ) document.getElementById(tagID).style.textDecoration='underline';		
			if (propagation==false) stopEventPropagation(evt);
		}
		
		function rowOut(evt,rowID,color,msg,tagID,propagation){			
			
			window.status = msg;
			document.getElementById(rowID).style.backgroundColor = color;
			if ( tagID != '' ) document.getElementById(tagID).style.textDecoration='none';				
			if (propagation==false) stopEventPropagation(evt);
			
		}

		function clientMessage(e,msg){	
			stopEventPropagation(e);		
			return confirm(msg);
		}
	

//-->