
function SetSrc(imgnm,path)
{
	var img=window.document.images[imgnm];
	if(img&&img.src)
	{
		img.src=path;//var w=img.width;var h=img.height;img.width=400;
	}
}

function OpenBig(imgnm)
{
	var img=window.document.images[imgnm];

	var gigsrc=img.src.toString().replace("fotospeleosmall","fotospeleo");
	window.open(gigsrc,"_blank");
}