<!-- begin hiding from non-Javascript enabled browsers


// ------------------------------------------------------------------------------
// Fixes the resizing issue in Netscape by reloading the page to fit.
function MM_reloadPage(init) {
	if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
		document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
	else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

// ------------------------------------------------------------------------------
// Array to hold date values
function isnArray() {
	argnr=isnArray.arguments.length
	for (var i=0;i<argnr;i++) {
		this[i+1] = isnArray.arguments[i];
	}
}

// ------------------------------------------------------------------------------
// Y2K compliant year
function getFullYear(d) {
    var y = d.getYear();
    if (y < 1000) {y += 1900};
    return y;
}

// ------------------------------------------------------------------------------
// Function to display time
function nowStr() {
   var now=new Date()
   year = now.getYear();
   if (year < 2000) year = 1900 + year;
   var hours=now.getHours()
   var minutes=now.getMinutes()
   timeStr=""+((hours > 12) ? hours - 12 : hours)
   timeStr+=((minutes < 10) ? ":0" : ":") + minutes
   timeStr+=(hours >= 12) ? " PM" : " AM"
   return timeStr
}

// ------------------------------------------------------------------------------
// Function to display date
function todayStr() {
	var isnMonths = new isnArray("JAN.","FEB.","MAR.","APR.","MAY","JUN.","JUL.","AUG.","SEPT.","OCT.","NOV.","DEC.");
	var isnDays = new isnArray("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
	var currenttime=nowStr();
	today = new Date();
	//document.write (today.getDate()+" de "+isnMonths[today.getMonth()+1]+" de "+getFullYear(today))
	document.write (isnMonths[today.getMonth()+1]+" "+today.getDate()+" , "+getFullYear(today))
}


// STOP HIDING FROM OTHER BROWSERS -->
