function UpdateFooter()
{
	var htmlBandeau, lienAdr;

	lienAdr = 'mai' + 'lto:bon.stephane' + String.fromCharCode(64) + 'gma' + 'il.com?subject=Himalanda - Contact';
	htmlBandeau = '&copy;2006-2012, <a href="' + lienAdr + '" title="Ecrivez-moi">St&eacute;phane Bon</a>&nbsp;';
	htmlBandeau += '<a href="' + lienAdr + '" title="Ecrivez-moi"><img src="env/ico_email_16.png" /></a>';
	$("#footer-copyright").html(htmlBandeau);
}


function noContextMenu(e)
{
	return false;
}

function noRightClick(e)
{
	if (document.layers || document.getElementById && !document.all)
	{
		if (e.which == 2 || e.which == 3)
		{
			document.captureEvents(Event.MOUSEDOWN);
			return false;
		}
	}
	else if (document.all && !document.getElementById)
	{
		if (event.button == 2)
		{
			return false;
		}
	}
}

document.onmousedown = noRightClick;
document.oncontextmenu = noContextMenu;
if (parent.frames.length > 0)
{
	parent.location.replace(document.URL);
}

