function pressCatalogButton(obj, state){
	obj.className = 'catalogueItem'+(state == 1 ? 'Over':'')
	return false;
}

function viewBigImage(href, path, width, height){
FLS=window.open(path+"view_big_image.php?img="+href, 'viewImage', "width="+width+", height="+height+" scrollbars=no , resizable=no"); 
FLS.focus();
return false;
}

//Показать позиции для заказа в статистике(личный кабинет)
function viewOrderPosition(ajax_obj, load_place_id){
	var load_place = document.getElementById(load_place_id);
	load_place.parentNode.style.display="";
	ajax_obj.loadModule();
	return false;
}

function closeOrderPosition(obj){
	obj.style.display="none";
	return false;
}