function getDesc()
{
	return 'a';
}

function EnlargeSmallImg(minObj, enlargeDestinationId)
{
	var img = document.getElementById(enlargeDestinationId);
	if( img!= null )
        {
		if( minObj.src.indexOf('noIm') > 0 )
		return;

        img.src = minObj.src.replace('.jpg', 'p.jpg');
        var sr = document.getElementById('d' + minObj.id.substring(2));
        var dest = document.getElementById('opis');
        	if (dest!=null && sr!=null)
				dest.innerHTML = sr.value;
			else
			dest.innerHTML = '';
        }
}
