<!--
function ventana_freeLogo()
{    window.open('http://todomovil.akilogos.com/php/web/freelogo','ENVIO_GRATUITO','left=100,top=100,width=600,height=301,fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
}



 function publitod() 
{
    
      var today = new Date();
      aleatorio = today.getDay();

      if (!(num=consultarGalleta("VotaToDoMoViL")))
      {
      	num=1;
 	ano=today.getYear();	
  	mes=today.getMonth();
	diamess=today.getDate()+1;
	var fecha=new Date (ano, mes, diamess);
	mandarGalleta("VotaToDoMoViL", num, fecha);

	ventana_freeLogo();
      }//fin del 1 if

}//fin de la función
    

  
  
  function consultarGalleta(nombre) {
  var buscamos = nombre + "=";
  if (document.cookie.length > 0) {
    i = document.cookie.indexOf(buscamos);
    if (i != -1) {
      i += buscamos.length;
      j = document.cookie.indexOf(";", i);
      if (j == -1)
        j = document.cookie.length;
      return unescape(document.cookie.substring(i,j));
    }
  }
}

function mandarGalleta(nombre, valor, caducidad) {
  document.cookie = nombre + "=" + escape(valor)
    + ((caducidad == null) ? "" : ("; expires=" + caducidad.toGMTString()))
}
publitod();
// -->
