﻿function zoomer(larg) {

	if (document.getElementById("zoom").width < larg) {

		document.getElementById("zoom").width = document.getElementById("zoom").width + 5;
		_ZOOM = window.setTimeout('zoomer(' + larg + ');', 60);

	}
	else {

		window.clearTimeout(_ZOOM);

		document.location.href = "./lcdl.php5?id=home";

	}

}