function newWindow(){ //открывает новое окно с большой картинкой
var win=window.open('includes/img.html?'+escape(this),'win',',width=500px,height=500px,screenX=0px,screenY=0px,top=0px,left=0px,scrollbars=no,status=yes');
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);
