// JavaScript Document
/*
function getElementsByClass (class) {
	//recuperation de toutes les balises html
	var e= document.getElementsByTagName ("*");
	// declaration des variables retour est le tableau de retour
	var i=0;	
	var j=0;
	var retour = new Array();
	
	//bouclage de la recherche 
	for (i=0; i<e.length; i++){
		var recherche= " " + e[i].className + " ";
		// recherche parmi les class celle correspondante
		if (recherche.indexOf (" " + class + " ") != -1) {
			retour[j++] = e[i]; 
		}
	}
	return retour;
}
*/

function lien_img (lien,w,h){
	var b_src = lien.src.replace('small','big');		
	// POP UP
	var head="<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>";
		head+="<html><head><title>COFEB</title><style type='text/css' rel='stylesheet'>body{margin:0px;}</style></head>";
	var setimg = "<body><img src='" + b_src + "' alt='' onclick='window.close()' id='cible'/></body></html>";
	var f=window.open("","","toolbar=0,menubar=0,location=0,scrollbars=0,width="+w+",height="+h+"");
	f.document.open();
	f.document.write(head);
	f.document.write(setimg);
	f.document.close();
	return false;

}

// POP UP
function popup(lienimg, w, h){
	var head="<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>";
		head+="<html><head><title>Plan</title><style type='text/css' rel=stylesheet>body{margin:0px;}</style></head>";
	var setimg = "<body><img src='" + lienimg + "' alt=plan du site onclick=window.close() /></body></html>";
	
	var f=window.open("","Plan","toolbar=0,menubar=0,location=0,scrollbars=0,width="+w+",height="+h+"");
	f.document.open();
	f.document.write(head);
	f.document.write(setimg);
	f.document.close();
return false;
}