function showPhoto(id)
{
    for(var i = 0; document.getElementById('bigPhoto' + i); i++)
    {
        document.getElementById('bigPhoto' + i).style.display = 'none';
    }
    document.getElementById('bigPhoto' + id).style.display = 'block';
}

function showGallery(url)

	{

		var sw = screen.availWidth;

		var sh = 600;

		window.open(url,'popupas','toolbar=0, scrollbars=1, resizable=1, width=' + screen.availWidth + ', height=' + 700);

	}
