// Script code thanks to Chris @ FCOT //
    
    dlm=document.lastModified;
 	day=dlm.substring(3,5);
	month=dlm.substring(0,2);
	year= dlm.substring(6,11);

   document.write("<br><h5> page last updated :"+ "<br><font color='yellow'>"+day+"/"+month+"/"+year+"</h5><br>");

