function xml_mode(link){
	loc = location.href
	if (loc.indexOf("?") != -1)
		loc += "&xml=1"
	else
		loc += "?xml=1"
	link.href = loc
}
function zoom (path, w, h){
	//path='/i/'+path;
	scrollbars = 0;
	screenW = screen.width;
	screenH = screen.height;
	leftPos = (screenW - w)/2;
	topPos = (screenH - h)/2;
	if (w > 770 || h > 650) scrollbars = 1;
	var params = "width=" + (w > 770 ? 770 : w) + ", height=" + (h > 650 ? 650 : h) + ", top="+topPos+", left="+leftPos+",menubar=no,location=no,resizable=0,scrollbars=" + scrollbars;
	win=open("", "New", params);
	win.document.open();
	win.document.write ('<html><head><title>Московский Международный Салон "ИНТЕРЬЕР ШОУ" - элитная выставка мебели и интерьеров в Москве. Мебельный бутик, интерьеры лучших дизайнеров мира, Архитектурный салон, Мобильные интерьеры</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0"><img src="'+path+'" style="cursor:pointer;" onClick="window.close();" alt="Закрыть окно" title="Закрыть окно" /></body></html>');
	win.document.close();
	win.focus();
	}