function high(which2)
{
theobject=which2;
highlighting=setInterval("highlightit(theobject)",50);
	
}
function low(which2)
{
clearInterval(highlighting);
which2.filters.alpha.opacity=50;
}
function highlightit(cur2)
{
if(cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if(window.highlighting)
clearInterval(highlighting)
}

function dia()
{
    var Fecha=new Date();
    var numero;
    
    //Si es Enero
    if (Fecha.getMonth()==0) 
    	numero = Fecha.getDate()
    else
        numero=(31*Fecha.getMonth()) +Fecha.getDate()
	
	if (numero<100)
	 		numero = '0'+numero
	 	
	if (numero<10)
	 		numero = '0'+numero
	return (numero);
}

function manana(dia)
{
var manana;

manana=(parseInt(dia, 10)+1);

if (manana<100)
 manana = '0'+manana 	
if (manana<10)
 manana = '0'+manana
return (manana);
}
 
function ayer(dia)
{ 
var ayer;
ayer=(parseInt(dia, 10)-1);

if (ayer<100)
 ayer = '0'+ayer 	
if (ayer<10)
 ayer = '0'+ayer
return (ayer);
}