/***********************************************************/
/* fichier : fonctions.js                                  */
/*                                                         */
/* auteur  : Ludovic Mauris                                */
/*                                                         */
/* date    : 12.08.2006                                    */
/*                                                         */
/* but     : Fonctions JS en tout genre                    */
/*                                                         */
/***********************************************************/
function preload(p_Img){
	img = new Image();
	img.src = p_Img;
}

function change_image(img_nom,img_src) { 
	document[img_nom].src = img_src;
}

function popup_photo(sPicURL) { 
	window.open( 'popupPhotos.php?'+sPicURL, '', 'top=0,left=0,height=200,width=200,directories=0,status=0,scrollbars=0,resizable=0,menubar=0');
}