function timeUp() {
	function showFilled(value) {
		return (value > 9) ? ""+value : "0"+value;
	}
	var date = new Date();
	document.getElementById("clock").value = showFilled(date.getHours())+":"+showFilled(date.getMinutes())+":"+showFilled(date.getSeconds());
	document.getElementById("clock").click();
}

function goLexi(anchor) {
	window.location.href = 'http://assurances.gramaglia.mc/assurances/assurances.php?p=lexi#'+anchor;
}