	//
	// AJINA Open Source AJAX-Framework
	//
	// http://www.ajina.org
	//
	// Copyright (c) 2005, 2006 by Andreas van Loock
	//
	// This source file is subject to version 2.0 of the GPL license,
	// that is bundled with this package in the file LICENSE, and is
	// available through the world-wide-web at the following url:
	//
	// http://www.ajina.org/lizenz/gpl_license.html
	//
	// If you did not receive a copy of the phpFormular license and are unable
	// to obtain it through the world-wide-web, please send a note to
	// info@toolpixx.com so we can mail you a copy immediately.
	//
	// Author: Andreas van Loock
	//

	var firstLoaded = new Array();

	//
	// Dummy Response-Function to do anything...
	//
	function counterClickRequestPopulation() {

		try {
			var messageBoxText = '';
			// If response is ok
			if (getAjaxResponseReadyState()) { 
				document.getElementById('tagcloudTopContent').innerHTML = http_response_text;
				Effect.BlindDown('tagcloudTop');
			}
		} catch(e) {
			alert('counterClickRequestPopulation:' + e);
		}
		finally{}
	}

	//
	// Dummy Request-Function
	//
	function counterClickRequestEvent(url, data) {

		try {
			createAjaxConnect('/cgi-php/weblicationTagCloud/listall.php', 'GET', 'xml', '');
			sendAjaxRequest("counterClickRequestPopulation");
		} catch(e) {
			alert('counterClickRequestEvent' + e);
		}
		finally{}
	}