
function openPopup(pUrl, pName, pWidth, pHeight) {
	open(pUrl, pName, "statusbar,titlebar,personnalbar,locationbar,menubar=no,scrollbars=yes,resizable=yes,width="+pWidth+",height="+pHeight);
}

function openImage(pImage, pTitre) {
	html = '<html><head><title>Image : '+pTitre+'</title></head>'; 
	html += '<body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0"><center>'; 
	html += '<img src="'+pImage+'" border="0" name="imageGal" onload="window.resizeTo( document.imageGal.width+29, document.imageGal.height+52);window.focus();">'; 
	html += '</center></body></html>'; 
	popupImage = window.open('','galerieImage',"statusbar,titlebar,personnalbar,locationbar,menubar=no,scrollbars=yes,resizable=yes"); 
	popupImage.document.open(); 
	popupImage.document.write(html); 
	popupImage.document.close(); 
}

/*********************
*
* Formulaires
*
**********************/

function checkInput(form, name, errorMsg) {
	if (document.forms[form].elements[name].value == "") {
		if (errorMsg)
			alert(errorMsg);
		return false;
	} else {
		return true;
	}
}

