/* anchors
********************/
function initAnchors(){
	var anchors = document.getElementById("texte").getElementsByTagName("a");
	for (var i=0; i<anchors.length; ++i){
		if (anchors[i].rel == "popup") anchors[i].onclick=popup;
		if (anchors[i].rel == "external") anchors[i].onclick=external;
	}
}
function popup(){
	window.open("popup.php?img=" + this, "pop", "scrollbars=no");
	return false;
}
function external(){
	window.open(this);
	return false;
}

/* init
********************/
window.onload = function(){
	initAnchors();
}