function newWindow(){ //открывает новое окно с большой картинкой
var win=window.open('/img.php?'+escape(this),'win','resizable,width=400,height=200,screenX=0,screenY=0,top=20,left=20');
win.focus();
return false;
}
function setEvents(){/* устанавливаем события для открытия больших картинок в новом окне */
	var anchors = document.getElementsByTagName("a");
	for(var i=0; i<anchors.length; i++){
		if(anchors[i].getAttribute("href") && (anchors[i].getAttribute("rel")=="newwindow")) anchors[i].onclick=newWindow;
	}
}
/* запускаем setEvents после загрузки документа */
if(typeof document.attachEvent!='undefined') window.attachEvent('onload',setEvents);
else window.addEventListener('load',setEvents,false);
