/* JavaScript Document */

/***************************************/
/*	    Creado por Alex	       */
/*	   para Look & Enter	       */
/*	fecha creacin: 25-09-2005     */
/***************************************/
<!--
/*
nespacios=68;
velocidad=50;
start=0;
mensaje="";
for(i=start;i<nespacios;i++)
	mensaje+=" ";
mensaje+="::: LOOK & ENTER --- MARKETING INTEGRADO DESDE INTERNET :::";
pos=68;
inc=1;
function barraEstado()
{
	var mostrado;
	mostrado=mensaje.substr(pos,mensaje.length);
	window.status=mostrado;
	if(pos%nespacios==0)
		inc=-inc;
	pos+=inc;
}

function statusBar()
{
	window.setInterval('barraEstado()',velocidad); 
}
*/


mensaje=" ::: LOOK & ENTER --- MARKETING INTEGRADO DESDE INTERNET :::                                                                                                         ";
pos=1;

function barraEstado()
{
	var mostrado;
	mostrado=mensaje.substr(0,pos);
	window.status=mostrado;
	pos++;
	if(pos==mensaje.length)
		pos=1;
}

function statusBar()
{
	window.setInterval('barraEstado()',100); 
}

function imagenOn(nombre){
	document.getElementById(nombre).src="img/"+nombre+"on.gif";
	
}
function imagenOff(nombre){
	document.getElementById(nombre).src="img/"+nombre+".gif";
	
}

function ranking(cual){
		
			url="rankings/"+cual+"/ranking.php";
		w=640;
		h=400;
		//centro la ventana
		x=(screen.availWidth-w)/2;
		y=((screen.availHeight-h)/2)-20;
	
		//creo nueva ventana sin resize ni scroll ni status (no xp)
		ventana=window.open(url,'miventanita','width='+w+',height='+h+',left='+x+',top='+y+',scrollbars=yes,resize=no,status=no');
		//la doy foco
		ventana.focus();
		return false;

	}

function avisoLegal(){
		
			url="avisolegal.php";
		w=400;
		h=285;
		//centro la ventana
		x=(screen.availWidth-w)/2;
		y=((screen.availHeight-h)/2)-20;
	
		//creo nueva ventana sin resize ni scroll ni status (no xp)
		ventana=window.open(url,'miventanita','width='+w+',height='+h+',left='+x+',top='+y+',scrollbars=yes,resize=no,status=no');
		//la doy foco
		ventana.focus();
		return false;

	}

function irYear(){
	document.location.href("enlosmedios.php?year="+document.forms['miselect']['year'].value);
}


AC_FL_RunContent = 0;
<!--
// -----------------------------------------------------------------------------
// Globales
// Se requiere una versión superior de Flash
var requiredMajorVersion = 8;
// Se requiere una versión inferior de Flash
var requiredMinorVersion = 0;
// Se requiere revisión de Flash
var requiredRevision = 0;
// -----------------------------------------------------------------------------
// -->
function vinculo(links){
	switch(links){
		case "home":
		parent.mainFrame.location.href="index2.php";
		break;
		case "contacto":
		parent.mainFrame.location.href="contacto.php";
		break;
		case "nosotros":
		parent.mainFrame.location.href="nosotros.php";
		break;
		case "clientes":
		parent.mainFrame.location.href="clientes.php";
		break;
		}
	
	
	}
	var message="Look & Enter.com";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")
