/*
var clientBoxUpdater;
function updateClientBox2(inIndex) {	
	url = 'sources/php/update_clientbox.php?ID='+inIndex;
	clientBoxUpdater = new Ajax.Updater('clientinfo', url, { method: 'get' });
}
*/

/*

var clientBoxUpdater;
	
function updateClientBox2(inIndex) {	
	var url = 'sources/php/update_clientbox.php?ID='+inIndex;
	var clientinfo = $('clientinfo');
	clientinfo.update('loading...');
	
	if ( clientBoxUpdater && !clientBoxUpdater._complete ) 
		clientBoxUpdater.transport.abort();
	
	clientBoxUpdater = new Ajax.Request(url, {
	  method: 'get',
	  onSuccess: function(transport) {
	    clientinfo.update(transport.responseText);
	  }
	});

}
*/

/*
var url = '/proxy?url=' + encodeURIComponent('http://www.google.com/search?q=Prototype');
// notice the use of a proxy to circumvent the Same Origin Policy.

new Ajax.Request(url, {
  method: 'get',
  onSuccess: function(transport) {
    var notice = $('notice');
    if (transport.responseText.match(/href="http:\/\/prototypejs.org/))
      notice.update('Yeah! You are in the Top 10!').setStyle({ background: '#dfd' });
    else
      notice.update('Damn! You are beyond #10...').setStyle({ background: '#fdd' });
  }
});
*/
