/* Created by the University of Houston - Downtown 
               Division of Information Technology. 
   please contact webmaster@dt.uh.edu if using this script */
dia = new Date(document.lastModified);
mes = dia.getMonth()+1;
fecha = dia.getDate();
anyo = dia.getYear();
var PrevAnyo = anyo;
if (anyo == 1999) 
	anyo = anyo + 2000 ; //Y2K Compliance in IE and N3
else
	if (anyo<=100)
		anyo = anyo +2000;

if ((anyo== 2069) || (anyo == 1969))
//document.writeln("This document was modified dynamically")
document.writeln("This document was modified dynamically")
else	
//document.writeln("Last modified on "+mes+"/"+fecha+"/"+anyo);
document.writeln("Last modified "+dia);

