var loadphototoimg_oldid = 1;
function loadphototoimg(Id)
{
	if(!document.getElementById("small"+loadphototoimg_oldid)	)
	{
		for(i=1;i<20;i++)
		{
			if(document.getElementById("small"+i))
			{
				loadphototoimg_oldid = i;
				break;
			}
		}
	}
	if(loadphototoimg_oldid == Id)
	 return false;
	
	document.getElementById("bigimg").src = 'data/img/blanc.gif';
	 
	document.getElementById("small"+Id).className = "red_border";
	if(loadphototoimg_oldid > 0)
		document.getElementById("small"+loadphototoimg_oldid).className = "gray_border";
		
	Url = document.getElementById("small"+Id).src;
	Url = Url.replace("_s","");
	
	document.getElementById("bigimg").src = Url;
	
	loadphototoimg_oldid = Id;
}


function atime_original_position()
{
	Top = position("Top",document.getElementById("atime_original_pos_obj"));
	Left = position("Left",document.getElementById("atime_original_pos_obj"));

	document.getElementById("d1").style.marginTop=Top+"px";
	document.getElementById("d1").style.marginLeft=(Number(Left) - 0) +"px";
}