<!--
function RandomNumber()
	{
	var today = new Date();
	var num= Math.abs(Math.sin(today.getTime()/1000));
	return num;
	}

function RandomGraphics() 
	{
	var x = RandomNumber();
	if (x > 0.4)
		{
		document.write("<A HREF='http://www.losglaciares.com/en/mapas.html' target=_self><img src='http://www.losglaciares.com/en/img/promos/mapas.gif' alt='Maps & References' width=110 height=60 align=center border=0></a>"); return;
		}
	if (x > 0)
		{
		document.write("<A HREF='http://www.losglaciares.com/en/galeria.html' target=_self><img src='http://www.losglaciares.com/en/img/promos/galerias.gif' alt='Photo gallery' width=110 height=60 align=center border=0></a>"); return;
		}
	}
RandomGraphics();
//End Script -->