/* 

THAIZE 2008 | © DELTA WEB http://www.delta-web.com



*/
function writeFooter ()
{
	document.write(	"<p class='pdp1'>"
					+"M&eacute;tallerie THAIZE 2008 - <a href='contact-thaize.php'>Informations l&eacute;gales</a></p>"
					+"<p class='pdp2'>"
					+"<a href='contact.php'><img src='images/icone_tel.gif' alt='T&eacute;l&eacute;phone' width='19' height='19' border='0' class='floatLeft'/></a>T&Eacute;L : 04 78 96 21 94<br />"
					+"FAX : 04 78 96 27 65"
		  			+"</p>"
				   );
}


function initHide(id)
{
	document.getElementById(id).style.display = "none";
}

hideId = "";

function hideShow(id)
{
	document.getElementById(id).style.display = "block";
	if(hideId)
	{
		document.getElementById(hideId).style.display = "none";
	}
	if(hideId != id)
	{
		hideId = id;
	} else {
		hideId = "";
	}
}

