function imprime_zone(titre, obj) 



{ 

// Définie la zone a imprimer

var zi = document.getElementById(obj).innerHTML;



// Ouvre une nouvelle fenetre

var f = window.open("", "ZoneImpr", "height=500, width=600, toolbar=0, menubar=0, scrollbars=1, resizable=1, status=0, location=0, left=10, top=10");



// Définit le Style de la page

f.document.body.style.color = '#000000';

f.document.body.style.backgroundColor = '#FFFFFF';

f.document.body.style.padding = "10px";



// Ajoute les Données

f.document.title = titre;

f.document.body.innerHTML += "<link rel=\"stylesheet\" type=\"text/css\" media=\"screen\" href=\"http://www.arthur-loyd-rennes.com/css/commonStyle.css\" /><table width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"3\" cellspacing=\"0\"><tr><td width=\"3%\"><img src=\"http://www.arthur-loyd-rennes.com/images/logo.gif\"></td><td><div align=\"center\"><strong>Espaces Entreprise</strong><br>Pour plus d'informations, n'hésitez pas &agrave; nous contacter<br>Blois : 02 54 74 08 88 ou Bourges : 02 48 20 02 02</div></td></tr></table>" + zi + "";



// Imprime et ferme la fenetre

f.window.print();

f.window.close();

return true;

}



function showMenu (id) {

	$$('dd.show').each(

	function (elt) 

		{

			elt.removeClassName('show').addClassName('hidden');

		}

	) 

	if (id) {

		$(id).removeClassName('hidden').addClassName('show');

	}

}


