// JavaScript Document
function openVisuel()
{
	document.getElementById('description').style.display = "none";
	document.getElementById('lien_description').style.display = "inline";
}

function closeVisuel()
{
	document.getElementById('description').style.display = "block";
	document.getElementById('lien_description').style.display = "none";	
}

function viewMap()
{
	win = window.open('../media/im/planacc.gif', '', 'width=670,height=570,resizable=no,location=no,toolbar=no,menubar=yes,scrollbars=1');
	win.document.open();
	win.document.write('<HTML><HEAD><TITLE>Plan - Aknin</TITLE><STYLE>body { margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; background-color:black;</STYLE>');
	win.document.write('</HEAD>');
	win.document.write('<BODY><div align="center"><IMG name="ref" onclick="window.close()" title="Accès" alt="Accès" border=0 src="../media/im/planacc.gif"></div></BODY></HTML>');
	win.document.close();
}