/* WEBVING.JS */

function lirePlus(divId) {
	var div = document.getElementById(divId);
		if(div.style.visibility=="visible") {
			div.style.visibility = "hidden";
			div.style.height = "1px";
			div.style.clear = "none";
		} else {
			div.style.visibility = "visible";
			div.style.height = "auto";
			div.style.clear = "both";
		}
}

