function bookmark(title, url) {
	// если название страницы не было чётко указано, возьмём заголовок текущей страницы
	if (title == undefined)
		title = document.title;

	// то же самое и с URL-ом
	if (url == undefined)
		url = top.location.href;

	if (window.sidebar) {
		// Firefox
		window.sidebar.addPanel(title, url, '');
	} else if (window.opera && window.print) {
		// Opera
		var t = document.createElement('a');
		t.setAttribute('rel', 'sidebar');
		t.setAttribute('href', url);
		t.setAttribute('title', title);
		t.click();
	} else {
		// IE
		window.external.AddFavorite(url, title);
	}
	return false;
        }
function showPhoto(img,photo){
    $("#bigphoto").html('<a href="#" onClick="closeImg()">закрыть</a><img src="/usr/catalog/'+img+'"/ alt="'+name+'"/><div class="clear"></div><a href="#"  onClick="closeImg()">закрыть</a>');
    $("#bigphoto").fadeIn(800);
}
function closeImg(){
    $("#bigphoto").fadeOut(800);
}