function photosShow(imgNumber, imgWidth, imgHeight)
{
	if (!document.getElementById) return;
	document.getElementById('photoImg').innerHTML = 'Загрузка изображения...';
	
	var photoImg;
	photoImg = '<img src="' + photosArr[imgNumber] + '" width="' + imgWidth + '" height="' + imgHeight + '" alt="'+imgTitle+'" title="'+imgTitle+'" border="0"/>';
	var photoImgElement = document.createElement('Img');

	photoImgElement.src = photosArr[imgNumber];
	photoImgElement.border = 0;
	
	photoImgElement.width = imgWidth;
	photoImgElement.height = imgHeight;

	var _html = '';	
	if (photosArr.length == 1)
		_html = photoImg;
	else{
		_html = photoImgElement.outerHTML;
		if (imgNumber == photosArr.length - 1)
			_html = '<a href="javascript:void(0)" onclick="photosShow(' + (imgNumber + 1 - photosArr.length) + ', ' + imgWidth + ', ' + imgHeight + '); return false;">' + photoImg + '</a>';
		else
			_html = '<a href="javascript:void(0)" onclick="photosShow(' + (imgNumber + 1) + ', ' + imgWidth + ', ' + imgHeight + '); return false;">' + photoImg + '</a>';
	}

	document.getElementById('photoImg').innerHTML = _html;

	return true;	
}

function show_photo(filename)
{
	var img;
	img = document.getElementById('imgBig');
	 
	img.src = filename;
	
	return true;
}