function clignote1(){
	document.getElementById('resv').style.visibility = 'hidden';
	window.setTimeout("clignote2()",250);
}

function clignote2(){
	document.getElementById('resv').style.visibility = '';
	window.setTimeout("clignote1()",750);
}