function ajaxUpdate( id, url, message ) {
	if( message == undefined ) message = 'Loading...';
	
	var div = document.getElementById( id );
	var styleDiv = document.createElement( "div" );
	var loadImg  = document.createElement("img");
	var loadDiv  = document.createElement( "div" );
	var loadText = styleDiv.appendChild( loadDiv );

	div.innerHTML = '';
	div.appendChild( styleDiv );

	styleDiv.setAttribute( "class", "xhrLoad");
	styleDiv.setAttribute( "className", "xhrLoad");		// IE6
	styleDiv.appendChild( loadImg );

	loadImg.setAttribute("src", "/images/icons/loading.gif");	
	loadDiv.setAttribute("class", "xhrLoadText");
	loadDiv.setAttribute("className", "xhrLoadText");	// IE6
	loadText.appendChild( document.createTextNode( message ) );
/**/
	var myAjax = new Ajax.Updater( 
								id
								, url
								, { 
									method: 'get' 
								});
/**/	
}
