function derecha(e) {
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
alert('Centro Actix Deporte y Salud ©')
return false;
}

else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2)){
alert('Centro Actix Deporte y Salud ©')
}
}
document.onmousedown=derecha


// JAVASCRIPT CON PUBLICIDAD STATUS

var current = 0

var x = 0

var speed = 60

var speed2 = 2000

var cont = 0



function initArray(n) {

  this.length = n;

  for (var i =1; i <= n; i++) {

    this[i] = ' '

  }

}



typ = new initArray(5)

typ[0]="*http://www.actix.es - Centro Actix Deporte y Salud. En Ecija, Villa del Río y Cabra...";

typ[1]="*... Complejo de deporte y ocio, con piscina, y mucho más...*";

typ[2]="*... Clases de batuka, step, aerobic, aquaerobic. Natación. Personal trainer...*";

typ[3]="*... Novedad 2007. Fiesta del Agua. Hinchables acuáticos...*";

typ[4]="*... Para cualquier información dirigirse a: info@actix.es...*";



function typewrite() {

	var m = typ[current]



	window.status = m.substring(0, x++) + "*"



	if (x >= m.length + 1 && cont>(speed2/speed)) {

		cont = 0

		x = 0

		current++



		if (current > typ.length - 1) {

			current = 0

		}



		setTimeout("typewrite()", speed)

	} 

	else if(x >= m.length + 1 && cont<=(speed2/speed)) {

		cont++

		setTimeout("typewrite()", speed)

	}

	else {

		setTimeout("typewrite()", speed)

	}

}



typewrite();

