function showPhoto(path, index, albumId){
	YAHOO.util.Connect.asyncRequest('GET', '/index.php?option=com_loadimage&task=loadimage&path='+path+'&index='+index+'&albumid='+albumId,{
		success:function(o){
			document.getElementById('imgContainer').innerHTML = o.responseText;
			document.getElementById('photoBig').style.display='block';
			document.getElementById('photoBig').style.zIndex=1000;
		}, 
		failure:function(o){
		}
	}
	);	
}
function closePhoto(){
	document.getElementById('photoBig').style.display='none';
}