/*Copyright HEGOA Studio 2004*/

/* Barre de status */

texteAff = "Bienvenue sur le site de l'Association de Prévoyance du Personnel Navigant";
place = 0;
tempoLong = 100;
function AnimEtat2()
	{
	texteTemp1 = texteAff.substring(0,place);
	texteTemp2 = texteAff.substring(place,place+1);
	texteTemp2 = texteTemp2.toUpperCase();
	texteTemp3 = texteAff.substring(place+1,texteAff.length);
	window.status = texteTemp1 + texteTemp2 + texteTemp3;
	if (place>texteAff.length)
		{
		place=0;
		tempoLong=1000;
		}
	if (place==0)
		tempoLong=100;
	place++;
	tempoAnimEtat2 = setTimeout("AnimEtat2()",tempoLong)
	}
function AnimEtat2Break()
	{
	window.status = "";
	clearTimeout(tempoAnimEtat2);
	}

/* Menu contextuel interdit */

var doh = "Copyright APPN. Tous droits réservés.";
function noclick(scx) {
if (navigator.appName == "Netscape" && scx.which == 3) {
alert(doh);
return false; }
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) {
alert(doh);
return false; } }
document.onmousedown=noclick


