window.onload = init;

function show_hide_addcomment() {
	if (document.getElementById('img_comments').style.display == "block") { document.getElementById('img_comments').style.display = "none"; }
	else { document.getElementById('img_comments').style.display = "block"; }
}

// Initialisation (Au chargement de la page)
function init() {
	// Exif ou Non ?
	var exifs = "<EXIF_CAMERA_MODEL>";
	if (exifs != "") { document.getElementById('img_exif').style.display = "block"; }

	// Affichage remerciement suite à comment
	if (document.location.href.indexOf("thanks_comment") > -1) {
		document.getElementById('thank_for_comment').style.display = "block";
		//show_hide_addcomment();
	}
	
	// lleHoTmaps
	document.getElementById('comment_submit').onclick = function() {
		var lleHoTmaps = document.createElement('input');
		lleHoTmaps.setAttribute('type', 'hidden');
		lleHoTmaps.setAttribute('name', 'lleHoTmaps');
		lleHoTmaps.setAttribute('value', 'erehTyatSdna');
		document.getElementById('commentform').appendChild(lleHoTmaps);
		document.getElementById('commentform').submit();
	}
}