var x = document.lastModified;

//
day    = document.lastModified.substring(5,3);
month  = document.lastModified.substring(2,0);
year   = document.lastModified.substring(10,6);

  if (month==01) month = 'January'
  else if (month==02) month = 'February'
  else if (month==03) month = 'March'
  else if (month==04) month = 'April'
  else if (month==05) month = 'May'
  else if (month==06) month = 'June'
  else if (month==07) month = 'July'
  else if (month==08) month = 'August'
  else if (month==09) month = 'September'
  else if (month==10) month = 'October'
  else if (month==11) month = 'November'
  else if (month==12) month = 'December'
//



document.write("<table border=0 width=100% cellpadding=0 cellspacing=0 bgcolor=#990000>");

document.write("    <tr><td class=menu width = 55%><font color=white>&copy; Paradise Towers 2008<br>Doctor Who is &copy; British Broadcasting Corporation, no infringement intended.</font></td><td class=menu width = 45% align=right><font color=white>Page last updated : " + day +" " + month + " " + year +"</font></td></tr></table>");