function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2)) {
alert("All content and images are the property of Debiotech SA, Inc. Copyright 2007. \n If you would like to request usage of an image, please contact us at ++41-21-623-6000");
return false;
}
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("All content and images are the property of Debiotech SA, Inc. Copyright 2007. \n If you would like to request usage of an image, please contact us at ++41-21-623-6000");
return false;
}
return true;
}
document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;

function AfficherAnnee()
{
	/* 'now' contient "Wed Apr 18 2007 11:46:47 GMT+0200" */
	var now = new Date();

	/* On récupère les différents composants de la date */
	var year = now.getFullYear();

	/* Composition de la chaîne de caractère */
	return year;
}  