<!--//hide script from old browsers
da = new Date(document.lastModified) 
dd = da.getDate() // Get date within month 
dm = da.getMonth() + 1 
dy = da.getFullYear() 

if ( dy < 1970 ) dy = dy + 100; // We still have to fix the millennium bug 
ys = new String(dy) // Convert year, month and date to strings 
ms = new String(dm)   
ds = new String(dd)   
if ( ms.length == 1 ) ms = "0" + ms; // Add leading zeros to month and date if required 
if ( ds.length == 1 ) ds = "0" + ds;   
ys = ds + "-" + ms + "-" + ys // Combine year, month and date in ISO format 
document.write ( "last updated " + ys ) // Display the result 

//end hiding contents -->

