sec = 1;
function initializeAjax_website_show(section) {
	AjaxUpdater.update("GET", "services/website_show.php?section="+section, onResponse);
}

function onResponse() {
	if(Ajax.checkReadyState('loading_website_show') == "OK") {
		document.getElementById("response_website_show").innerHTML = '';
		document.getElementById("response_website_show").innerHTML += Ajax.getResponse();
		sec = sec+1;
	}
}

