function verifform(formulaire)
{
	if(formulaire.new_comment_content.value=="")
	{
		alert('Please enter a comment');
		return false;
	}
	else
		return true;
}

function centrePop(url,largeur,hauteur,scroll)	// centre le PopUp sur l'écran
{
	var gauche = (screen.width - largeur)/2
	var haut =  (screen.height - hauteur)/2
	return window.open(url,"","location=1, status=1, menubar=1, toolbar=1, scrollbars="+scroll+", resizable=1,width="+largeur+",height="+hauteur+",left="+gauche+",top="+haut)
}