<!--
function gal_action() {
	var host = window.location.hostname;
	new Ajax.Request( 'phpWebPicasa/index.php', {
		method: 'get',
		onComplete: function(rsp) {
			$('inhalt').innerHTML = rsp.responseText;
		}
	});
}

function showAlbum(album_id) {
	new Ajax.Request( 'phpWebPicasa/index.php', {
		method: 'post',
		parameters: 'id=' + album_id,
		onComplete: function(rsp) {
			$('inhalt').update(rsp.responseText);
		}
	});
}

function showContent(site,s_sub) {
	var params;
	var ret;
	
	new Ajax.Request( '../scripts/content.php', {
		method: 'post',
		parameters: 'site=' + site + '&sub=' + s_sub,
		onComplete: function(rsp) { 
			ret = rsp.responseText;
			ret_val = ret.split('||');
			$('rmenu').update(ret_val[0]);
			$('text').update(ret_val[1]);
		}
	});
}

function imgChange(test) {
	alert(test);
}

//-->
