// JavaScript Document
var idDivFoto;
var timerID;
var helgitAdd;
var widhtAdd;
var imageRead;
var helg;
var widh;
var testImg=false;
var scrOfY;
function showFoto(url,id){
		scrOfY = 0;
       if( typeof( window.pageYOffset ) == 'number' ) {
               //Netscape compliant
               scrOfY = window.pageYOffset;
       } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
               //DOM compliant
               scrOfY = document.body.scrollTop;
       } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
               //IE6 Strict
               scrOfY = document.documentElement.scrollTop;
       }
	idDivFoto = document.getElementById(id);
	if (idDivFoto.style.height == '0px' || idDivFoto.style.width == '0px')//раскрываем
	{
		helg=0;
		widh=0;
		imageRead = new Image();
		imageRead.src=url;
		timerID = setInterval('resizeShow()',100);
	}
	else //закрываем
	{
		helg=imageRead.height;
		widh=imageRead.width;
		idDivFoto.style.heightwidth;
		//helgitAdd = imageRead.height/50
		//widhtAdd = imageRead.width/50
		idDivFoto.style.backgroundImage = "url("+imageRead.src+")"; 
		timerID = setInterval('resizeClose()',100);
	}
}
		function resizeShow(){
			if (!imageRead.complete) {
				return;
			}
				if (!testImg)
				{
					helgitAdd = imageRead.height/20;
					widhtAdd = imageRead.width/20;
					idDivFoto.style.backgroundImage = "url("+imageRead.src+")"; 
		
					testImg=true;
				}
	
				if (helg <=imageRead.height)
				{
					helg +=helgitAdd;
					idDivFoto.style.height=helg+"px";
					idDivFoto.style.marginTop=(scrOfY-helg/2)+"px"
				}
				if (widh <=imageRead.width)
				{
					widh+=widhtAdd;
					idDivFoto.style.width=widh+"px";
					idDivFoto.style.marginLeft="-"+widh/2+"px";
				}
				if (helg >=imageRead.height && widh >=imageRead.width)
				{
				testImg=false;	
				clearTimeout(timerID);
				}
		}
		function resizeClose(){
				if (helg >0)
				{
					helg -=helgitAdd;
					if (helg>0)
					{
						idDivFoto.style.height=helg+"px";
						idDivFoto.style.marginTop=(scrOfY-helg/2)+"px";
					}
				}
				if (widh >0)
				{
					widh-=widhtAdd;
					if (widh>0)
					{
						idDivFoto.style.width=widh+"px";
						idDivFoto.style.marginLeft="-"+widh/2+"px";
					}
				}
				if (helg <=0 && widh <=0)
				{
					idDivFoto.style.height = '0px';
					idDivFoto.style.width = '0px';
					clearTimeout(timerID)
				}
		}
function showZag() {
	document.write('<object type="application/x-shockwave-flash" data="/script/babochka.swf" width="70" height="80" name="printko_menu1" id="printko_menu1"><param name="movie" value="/script/babochka.swf" /><param name="wmode" value="transparent" /><embed src="http://www.pudels.ru/menu/zagalovok.swf" quality="high" bgcolor="#ffffff" width="70" height="80" name="zagalovok" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
}
