function Resize(value) {
	var container = document.getElementById("col-droite-content");
	if (container) {
		var size = parseInt(container.style.fontSize.replace("px", ""))
		if (isNaN(size)) {
			size = 11;
		}
		if ( (size > 10 ) || (value > 0) )
			container.style.fontSize = (size+value) + 'px';	
	}
}

