iter=0;
document.onmousemove = scrollImage;

function  scrollImage(e)
{ 	
	showP = document.getElementById('popup_div');
	showP.style.top = document.body.scrollTop+20+'px';
}

function openWindow(url)
{
   window.open(url);
}

function showImage(pic, fullPic, desc) 
{
	showP = document.getElementById('popup_div');	
    showP.innerHTML = '<img src="js/szuka.gif"/>Prosze czekac...';

	showP.style.visibility = 'visible';	
	showP.style.left = '400px';
	showP.style.top = window.document.body.scrollTop+20+'px';
	showP.style.width = '400px';
	showP.style.height = '80px';
	img = new Image();
	img.onload = function() 
		{		
			iHTML = '<img id="imageId" style="border: 2px solid #fff;" src="'+pic+'"/>';
			if (fullPic != '')		
			{			    
			    iHTML += "<DIV style=\"cursor:pointer;color:#fff;background-color:#D68936;font-weight:bold;font-family:Georgia;font-size:11px;margin-left:4px;text-align:center;\" onclick=\"openWindow('"+fullPic+"')\">Pełen rozmiar</DIV>";
			}
			    
			showP.innerHTML = iHTML;					
			showP.style.width = this.width+'px';
			showP.style.height = this.height+20+'px';
			showP.style.left = document.body.offsetWidth/2 - this.width/2 + 'px';
			showP.style.top = document.body.scrollTop+20+'px';	
			showP.onclick = closeImage;	
		}
	img.src = pic;		
}

function showImage2(pic, desc) 
{
	showP = document.getElementById('popup_div2');
	showP.innerHTML = '<img src="js/szuka.gif">Proszę czekać. Ładowanie zdjęcia ...';
	showP.style.visibility = 'visible';
	showP.style.left = '400px';
	showP.style.top = window.document.body.scrollTop+20+'px';
	showP.style.width = '400px';
	showP.style.height = '80px';
	img = new Image();
	img.onload = function() {
			iHTML = '<img src="'+pic+'"/>';
		//	iHTML += '<div class="foto_podpis"><br>'+desc+'</div>';
			showP.innerHTML = iHTML;
			showP.style.width = this.width+'px';
			showP.style.height = this.height+20+'px';
			showP.style.left = document.body.offsetWidth/2 - this.width/2 + 'px';
			showP.style.top = document.body.scrollTop+20+'px';
			showP.onclick = closeImage;	
	}
	img.src = pic;		
}

function closeImage() 
{
	popupDiv = document.getElementById('popup_div');
	popupDiv.style.visibility = 'hidden';
}

if (navigator.appName == 'Microsoft Internet Explorer' && parseInt(navigator.appVersion) >= 4)
{
	  function click()
	  {
		  if (event.button==2)
			{
				popupDiv = document.getElementById('popup_div');
				popupDiv.style.visibility = 'hidden';
			}
	  }
	  document.onmousedown=click    
}