//==========================================INFOBULLE
var IB=new Object;
var nsx=0;nsy=0;

//TEXTE DE CHAQUE BULLE
var patent='Will explain you the intellectual properties right.';
var fit='Technical Information File. The ebg patent.';
var contact='Please find usefull links and the contacts you need.';
//TEXTE DE CHAQUE BULLE

function AffBulle(texte) {
contenu="<img src=_SKIN/dev_bullhaut.gif width=148><br><TABLE border=0 cellpadding=3 cellspacing=0 width=148><TR><TD background=_SKIN/dev_bulltxt.gif class=brown10px>"+texte+"<br></TD></TR></TABLE><img src=_SKIN/dev_bullbas.gif width=148><br>";
	if (document.layers) {
		document.layers["bulle"].document.write(contenu);
		document.layers["bulle"].document.close();
		document.layers["bulle"].top=nsy-10;
		document.layers["bulle"].left=nsx+20;
		document.layers["bulle"].visibility="show";}
	if (document.all) {
		var f=window.event;
		bulle.innerHTML=contenu;
		document.all["bulle"].style.top=f.clientY-10;
		document.all["bulle"].style.left=f.x+20;
		document.all["bulle"].style.visibility="visible";
}
}
function AffBulle_construction(texte) {
contenu="<img src=_SKIN/dev_bullhaut.gif width=148><br><TABLE border=0 cellpadding=3 cellspacing=0 width=148><TR><TD background=_SKIN/dev_bulltxt.gif class=brown10px>"+texte+"<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<IMG SRC='_SKIN/construction.gif' WIDTH='65' HEIGHT='65' BORDER=0></TD></TR></TABLE><img src=_SKIN/dev_bullbas.gif width=148><br>";
	if (document.layers) {
		document.layers["bulle"].document.write(contenu);
		document.layers["bulle"].document.close();
		document.layers["bulle"].top=nsy-10;
		document.layers["bulle"].left=nsx+20;
		document.layers["bulle"].visibility="show";}
	if (document.all) {
		var f=window.event;
		bulle.innerHTML=contenu;
		document.all["bulle"].style.top=f.clientY-10;
		document.all["bulle"].style.left=f.x+20;
		document.all["bulle"].style.visibility="visible";
	}
}
function ns(e) {
	nsx=e.x;nsy=e.y;
}
function HideBulle() {
	if (document.layers) {document.layers["bulle"].visibility="hide";}
	if (document.all) {document.all["bulle"].style.visibility="hidden";}
}

function InitBulle()	
 {
	if (document.layers) {
		window.captureEvents(Event.MOUSEMOVE);window.onMouseMove=ns;
		document.write("<LAYER name='bulle' top=0 left=0 visibility='hide'></LAYER>");
	}
	if (document.all) {
		document.write("<DIV id='bulle' style='position:absolute;top:0;left:0;visibility:hidden'></DIV>");
	}
}
//==========================================FIN_INFOBULLE

//**************************************************************************************************
function PopupCentrer(page,largeur,hauteur,options) {
//**************************************************************************************************
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
