// JavaScript Document
var posX = screen.availWidth/2;
var posY = screen.availHeight/2;


var current = "le_texte";

function over(cache, montre) {
		document.getElementById(cache).style.display = 'none';
		document.getElementById(montre).style.display = 'block';	
	}
	
function over_bis(montre) {
		document.getElementById(current).style.display = 'none';
		document.getElementById(montre).style.display = 'block';
		current = montre;
	}

function Zoom_scroll(src,nom,largeur,hauteur,leftx,topx) {
	leftx = leftx - ( largeur / 2 );
	topx	=	topx	-	( hauteur / 2 );
	popUp = window.open(src,nom,'width=' + largeur + ',' + 'height=' + hauteur  + ' ,left=' + leftx + ',top= '+ topx +',scrollbars=yes,toolbars=no,menubars=no,location=no');
}

function Zoom(src,nom,largeur,hauteur,leftx,topx) {
	leftx = leftx - ( largeur / 2 );
	topx	=	topx	-	( hauteur / 2 );
	popUp = window.open(src,nom,'width=' + largeur + ',' + 'height=' + hauteur  + ' ,left=' + leftx + ',top= '+ topx +',scrollbars=no,toolbars=no,menubars=no,location=no');
}
