// JavaScript Document

function clicie() {
	if (event.button==2) {
		alert("Copyright Soft-Lan sarl");
	}
}

function clicns(e){
	if(e.which==3){
		alert("Copyright Soft-Lan sarl");
		return false;
	}
}
if (document.all) {	document.onmousedown=clicie;}
if (document.layers) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}

function checkPswd(ext) {
  if ((document.pswdForm.pswd.value == null) || (document.pswdForm.pswd.value == ''))
    alert("Mot de passe invalide");
  else this.location.href = document.pswdForm.pswd.value + ext;
}

function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}
