<!--
function fecha()
{
	var now = new Date()
	var tempDate = now.getMonth()
	var tempYear = now.getYear()
	var tempDay = now.getDay()
	var Year = " de "+tempYear
	var Month=""
	var Day=""
	
	if (tempDay == 0) {Day = "Domingo"};
	if (tempDay == 1) {Day = "Lunes"};
	if (tempDay == 2) {Day = "Martes"};
	if (tempDay == 3) {Day = "Miércoles"};
	if (tempDay == 4) {Day = "Jueves"};
	if (tempDay == 5) {Day = "Viernes"};
	if (tempDay == 6) {Day = "Sábado"};
	
	if (tempDate == 0) {Month = "Enero"};
	if (tempDate == 1) {Month = "Febrero"};
	if (tempDate == 2) {Month = "Marzo"};
	if (tempDate == 3) {Month = "Abril"};
	if (tempDate == 4) {Month = "Mayo"};
	if (tempDate == 5) {Month = "Junio"};
	if (tempDate == 6) {Month = "Julio"};
	if (tempDate == 7) {Month = "Agosto"};
	if (tempDate == 8) {Month = "Septiembre"};
	if (tempDate == 9) {Month = "Octubre"};
	if (tempDate == 10) {Month = "Noviembre"};
	if (tempDate == 11) {Month = "Diciembre"};
	
	if (tempYear == 99) {Year = " de 1999"}
	document.write(Day+", "+now.getDate()+" de "+Month+Year)
}        


function mOvr(src,clrOver) 
{	if (!src.contains(event.fromElement))
	{	src.style.cursor = 'hand';
		src.bgColor = clrOver;
	}
}

function mOut(src,clrIn) 
{	if (!src.contains(event.toElement)) 
	{	src.style.cursor = 'default';
		src.bgColor = clrIn;
	}
}

function mClk(src) 
{	if(event.srcElement.tagName=='TD')
	{	src.children.tags('A')[0].click();	}
}


function favoritos()
{	if ((navigator.appVersion.indexOf("MSIE") > 0) && (parseInt(navigator.appVersion) >= 4))
		{	document.write("<a href=\"javascript:document.body.setHomePage('http://www.apicana.org.ar/')\">Haz esta tu Home Page</a>");
			document.write(" - ");
			document.write("<a href=\"javascript:var Loc='http://www.apicana.org.ar/';window.external.AddFavorite(Loc, 'APICANA - el inglés que se USA')\">Agregar a Favoritos</a>");
		} 
}

function Maximizar()
{
window.moveTo(0,0);
if (document.all) 
	{window.resizeTo(screen.availWidth,screen.availHeight);}
else 
	if (document.layers) 
	{if (window.outerHeight<screen.availHeight||window.outerWidth<screen.availWidth)
		{window.outerHeight = screen.availHeight;
		window.outerWidth = screen.availWidth;
		}
	}
}

function antibanner(prmHTML)
{	

	if (document.all.tags("IFRAME").length>=1)
	{	for(var i=document.all.tags("IFRAME").length-1;i>=0;i--)
		document.all.tags("iframe")(i).outerHTML=prmHTML;
	}
}

-->
