function demo(){
	window.open("/pages/demo.asp", "demo", "toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=no, copyhistory=no, width=740, height=470, left=10, top=30");
}

function contact(){
	window.open("/pages/societe/contact/mail.asp", "contact", "toolbar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=yes, copyhistory=no, width=700, height=550, left=10, top=30");
}



var position_x
var position_y

if(navigator.appName.indexOf("Mozilla")!= -1) document.captureEvents(Event.MOUSEMOVE);

document.onmousemove = position;
document.onmousedown = Om2;
document.oncontextmenu = Om;
document.onclick = Fm;

function position(p){
	position_x = (navigator.appName.indexOf("Netscape")!=-1 )? p.pageX : event.clientX+document.documentElement.scrollLeft;
	position_y = (navigator.appName.indexOf("Netscape")!=-1) ? p.pageY : document.documentElement.scrollTop+event.clientY;
}

function Om()
{
	document.getElementById("MenuClicDroit").style.top = position_y+"px";
	document.getElementById("MenuClicDroit").style.left = position_x+"px";
	document.getElementById("MenuClicDroit").style.visibility = "visible";
	return(false);
}

function Fm()
{
	document.getElementById("MenuClicDroit").style.visibility = "hidden";
}

function Om2(btn)
{
	if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2)
	{
		Om();
		return false;
	}
	else if ( (navigator.appName.indexOf("Netscape")!=-1 ) && btn.which == 3)
	{
		Om();
		return false;
	}
}