
function displayPicture(src)
{
	var pd = document.getElementById('ImageListPictureDiv');
	
	pd.style.top = '' + (((document.body.clientHeight + 101) / 2) + document.documentElement.scrollTop) + 'px';
	pd.style.left = '' + ((document.body.clientWidth - 402) / 2) + 'px';
	
	var at = document.getElementById('alltable');
	at.style.opacity = '0.2';
	at.style.filter = 'alpha(opacity=10)';
	
	var pi = document.getElementById('ImageListLoader');	
	pi.style.display = 'block';
	
	pd.style.visibility = 'visible';
	
	pi = document.getElementById('ImageListImage');
	pi.style.display = 'none';
	pi.src = src;
}

function showPicture()
{
	var pi = document.getElementById('ImageListLoader');
	pi.style.display = 'none';
	pi = document.getElementById('ImageListImage');
	pi.style.display = 'block';
}

function hidePicture()
{
	var pd = document.getElementById('ImageListPictureDiv');
	pd.style.visibility = 'hidden';
	
	var at = document.getElementById('alltable');
	at.style.opacity = '';
	at.style.filter = '';
}
