/**
 * weisberg : 16-10-2007
 * Ouvre la fenêtre pour ajouter des commentaires
 * Détection anti-popup
 * (Module commentaires activé)
 */
var fen;
function openCommentaires(idimg, msgAntiPopup) {
	fen = window.open("mods/commentaires/comms.php?idphoto="+idimg,"commentaires","height=500,width=500,resizable=yes,scrollbars=yes,status=yes");
	if (!fen) {
	    if (msgAntiPopup == 1) alert("Votre logiciel anti-popup est activé");
		if (msgAntiPopup == 2) alert("Your software against popup is enable");
	}
	fen.focus();
}
