function e2_drop_down(id) {
	if ($('#box_' + id).is(":hidden")) { // ha rejtett

$('#img_' + id).attr({ src: "minus.gif" }); // elrejtős kép

$('#box_' + id).slideDown("slow"); // lecsúszás

} else { // ha nem rejtett

$('#img_' + id).attr({ src: "plus.gif" }); // megjelenítős kép

$('#box_' + id).slideUp("slow"); // felcsúszás
	}
}

function dropdown(targetId) {
target = document.getElementById(targetId);
if (target.style.display == "none"){
target.style.display="";
} else {
target.style.display="none";
}
}
