function onImageLoaded()
{
	var imgEl = document.getElementById('fotos_pic');
	imgEl.src=bigImg.src;
}

function myOnOver(imgName,title,text) {
	var imgEl = document.getElementById('fotos_pic')

	imgEl.src = animationImg.src
	bigImg = new Image;
	bigImg.onload=onImageLoaded;
	bigImg.src=imgName;

	document.getElementById("fotos_title").innerHTML=title;
	document.getElementById("fotos_text").innerHTML=text;
}


function pic_pop_up(file_name,title,text,imgWeight,imgHeight){
	imgW=imgWeight;
	imgH=imgHeight;
	myFotWin=open("","","height=" + imgH + ",width=" + imgW + ",top=50,left=50,toolbar=no,status=yes,menubar=no,resizable=yes,scrollbars=no");
	myFotWin.document.open();
	myFotWin.document.write("<html><head><title>:: " + title + " </title>");
	myFotWin.document.write("<style>a{text-decoration:none; font:bold 11px Verdana,Arial,sans-serif; color:#999999; display:block; text-align:center;} a:hover {text-decoration:underline;}</style>");
	myFotWin.document.write("<script>function getImgSize() {");
	myFotWin.document.write("var a,b; a=document.images['myImg'].width; a=a+10;");
	myFotWin.document.write("b=document.images['myImg'].height; b=b+130; self.resizeTo(a,b);};");
	myFotWin.document.write("</script></head>");
	myFotWin.document.write("<body leftMargin='0' topMargin='0' marginheight='0' marginwidth='0' align=center>");
	myFotWin.document.write("<img src='" + file_name + "' border=0 name='myImg' align=center onload='getImgSize();'><br>");
	myFotWin.document.write("<center><div class=fotos_title>" + title + "</div></center>");
	myFotWin.document.write("<center><div class=fotos_text>" + text + "</div></center>");
	myFotWin.document.write("<center><a href='javascript:close();' title='закрыть окно'>");
	myFotWin.document.write("Закрыть окно</a></center>");
	myFotWin.document.write("</body></html>");
	myFotWin.document.close();
}