function show_full(id){
	document.getElementById("item_anonse_short_" + id).style.display = "none";
	document.getElementById("item_anonse_full_" + id).style.display = "block";
}

function show_preview(id) {
	document.getElementById("item_anonse_short_" + id).style.display = "block";
	document.getElementById("item_anonse_full_" + id).style.display = "none";
}

