// JavaScript Document

<!--
			function MM_openBrWindow(theURL,winname,features) { //v2.0
			  window.open(theURL,winname,features);
			}
			function ouvre(lang, qui, code) {
			  fichier = 'http://art-action.org/proposition/catalogue/detail_prog.php?codeoeuvre=' + code + '&lang=' + lang + '&qui=' + qui+ '&oeuvre=' + code;
			  ff=window.open(fichier,"target", "width=320, height=450,  toolbar=no, location=no, directories=no, statusbar=no, status=no, menubar=no, scrollbars=yes, resizable=yes, top=275, left=805") 
		 	 ff.focus() 
			}
//-->


<!--
			var persistclose=0 //set to 0 or 1. 1 means once the bar is manually closed, it will remain closed for browser session
var startX = 795 //set x offset of bar in pixels
var startY = 175 //set y offset of bar in pixels
var verticalpos="fromtop" //enter "fromtop" or "frombottom"
function iecompattest(){
	if (document.compatMode)
		if (document.compatMode!="BackCompat")
			return document.documentElement;
	return document.body;
}
function staticbar(){
	barheight=document.getElementById("rightmenu").offsetHeight
	var ns = (navigator.appName.indexOf("Netscape") != -1) || window.opera;
	var d = document;
	function ml(id){
		var el=d.getElementById(id);
		el.style.visibility="visible"
		if(d.layers)
			el.style=el;
		el.sP=function(x,y){this.style.left=x+"px";this.style.top=y+"px";};
		el.x = startX;
		if (verticalpos=="fromtop") {
			el.y = startY;
		} else{
			el.y = ns ? pageYOffset + innerHeight : iecompattest().scrollTop + iecompattest().clientHeight;
			el.y -= startY;
		}
		return el;
	}
	window.stayTopLeft=function(){
		if (verticalpos=="fromtop"){
			var pY = ns ? pageYOffset : iecompattest().scrollTop;
			ftlObj.y += (pY + startY - ftlObj.y)/8;
		}
		else{
			var pY = ns ? pageYOffset + innerHeight - barheight: iecompattest().scrollTop + iecompattest().clientHeight - barheight;
			ftlObj.y += (pY - startY - ftlObj.y)/8;
		}
		ftlObj.sP(ftlObj.x, ftlObj.y);
		setTimeout("stayTopLeft()", 10);
	}
	ftlObj = ml("rightmenu");
	stayTopLeft();
}
if (window.addEventListener) {
	window.addEventListener("load", staticbar, false)
}
else if (window.attachEvent) {
	window.attachEvent("onload", staticbar)
}
else if (document.getElementById) {
	window.onload=staticbar
}
//-->