window.onload = r; 
function r() 
{
	obj=document.getElementsByTagName('span');
	k=0;
	for (i=0; i<obj.length; i++) 
	{
		if(obj[i].className=='resize')
		{
			im = obj[i].getElementsByTagName('img');
			for(j=0;j<im.length;j++)
			{
				if (im[j].width > 600 && im[j].alt!=".") 
				{ 
					im[j].style.width = '600px'; 
					eval("pop" + String(k) + " = new Function(\"pop = window.open('" + im[j].src + " ','originalimg','width=800,height=600,scrollbars=1,resizable=1'); pop.focus();\")"); 
					eval("im[j].onclick = pop" + String(k) + ";"); 
					if (document.all) im[j].style.cursor = 'hand'; 
					if (!document.all) im[j].style.cursor = 'pointer'; 
					im[j].title = 'Click aici pentru a vedea imaginea in formatul original'; 
					k++;
				} 
			}
		}
	} 
} 
