var url = 'http://www.clemessy.fr/index.php?id=4';

function changePage(url) {
	window.location.replace(url);
	/*window.open(url, 'Emploi', 'location=yes,toolbar=yes,directories=yes,menubar=yes,resizable=yes,screenX=0,screenY=0,scrollbars=yes,status=yes,width=800,height=600');*/
}

function startTimer() {
   mytimer = window.setTimeout("changePage(url)", 10000);
}

startTimer();
