defaultStatus = "Vous êtes sur www.lamoura2.net ...";

function paclick(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert("(c) lamoura2.net");
return false;
}
return true;
}
document.onmousedown=paclick;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=paclick;

var color = 0;
function chCoulDial() {
    var font = document.getElementById('dialogues');
    if(color == 0) {
	font.style.color = "#00FF00";
        color = 1;
    } else {
	font.style.color = "#FF0000";
	color = 0;
    }
    window.setTimeout("chCoulDial()",800);
}
