window.onload = function(){
	document.getElementById('lien_ajout_commentaire').onclick = function(){
		document.getElementById('ajout_commentaire').style.display = 'block';
		try{
			document.getElementById('ajout_commentaire').getElementsByTagName('img')[0].src = '/captcha/image';
		}catch(e){};
		window.location.hash = 'ajout_commentaire';
		document.getElementById('commentaire_titre').focus();
		return false;
	};
};
