// JavaScript Document

function showCenter()
		{
			if(document.getElementById("Limage").height>450){document.getElementById("Limage").height=450}
			var tata = document.getElementById("Limage").height + 300 //hauteur txt
			var toto = document.getElementById("Limage").width
			
			var point = parent.window.center({width:toto,height:tata})
			alert(point)
			var div = document.getElementById("Dimg");
			div.style.background = "#dedede";
			div.style.position = "absolute";
			div.style.top = point.y  + "px";
			div.style.left = point.x  + "px";
			div.style.width = "600px";
			div.style.height = "600px";
			
		}
		
		

