var top = "#top";
var lastPost = "#lastPost";
var mitop = "#mitop";
var bot = "#bot";
var aqui = document.URL;

function limpia()
{
  while (aqui.match("#mitop") != null)
  {
   aqui = aqui.replace(/#mitop/,"");
  }
  while (aqui.match("#top") != null)
  {
   aqui = aqui.replace(/#top/,"");
  }
  while (aqui.match("#bot") != null)
  {
   aqui = aqui.replace(/#bot/,"");
  }
  while (aqui.match("#lastPost") != null)
  {
   aqui = aqui.replace(/#lastPost/,"");
  }
  if (aqui.match("collapse") != null)
  {
   aqui = "http://www.elcristodelosfaroles.com/portal/index.php?option=com_smf&amp;Itemid=36";
  }
}

function arriba()
{
limpia();
window.location.href = aqui + mitop;
}

function arriba2()
{
limpia();
window.location.href = aqui + top;
}

function abajo()
{
limpia();
window.location.href = aqui + bot;
}

function abajo2()
{
limpia();
window.location.href = aqui + lastPost;
}


