// JavaScript Document


document.write("<i>The Literary Gothic</i>. &nbsp;")


// Formatted last-modified date
if (Date.parse(document.lastModified) != 0) {
  var modiDate = new Date(document.lastModified);
  var modiYear = modiDate.getYear();
  modiYear = (modiYear < 2000) ? modiYear + 1900 : modiYear;
  var monthName = new Array("Jan.", "Feb.", "March", "April", "May", 
   "June", "July", "Aug.", "Sep.", "Oct.", "Nov.", "Dec.");
  document.write("" + modiDate.getDate() + " " + monthName[modiDate.getMonth()] + " " +modiYear +".");
  document.write(" Web. ");
  }

// Jim Dettwiler  http://www.icehouse.net/jim_d/

//


// Formatted date 2day
calendar = new Date();
 day = calendar.getDay();
 month = calendar.getMonth();
 date = calendar.getDate();
 year = calendar.getYear();
 if (year < 1000)
 year+=1900
 cent = parseInt(year/100);
 g = year % 19;
 k = parseInt((cent - 17)/25);
 i = (cent - parseInt(cent/4) - parseInt((cent - k)/3) + 19*g + 15) % 30;
 i = i - parseInt(i/28)*(1 - parseInt(i/28)*parseInt(29/(i+1))*parseInt((21-g)/11));
 j = (year + parseInt(year/4) + i + 2 - cent + parseInt(cent/4)) % 7;
 l = i - j;
 emonth = 3 + parseInt((l + 40)/44);
 edate = l + 28 - 31*parseInt((emonth/4));
 emonth--;
 var monthname = 
 new Array ("Jan.","Feb.","March","April","May","June","July","Aug.","Sep.","Oct.","Nov.","Dec." );
  document.write(" " + date + " ");
  document.write(monthname[month] + " ");
  document.write(year + ". ");
	document.write("<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
	// document.writeln("&lt;" + document.URL + "&gt;.") 
	document.write("</span><div class='mla'>[The above citation already includes the date this file was last modified, followed by medium of publication, then today's date, which is your date of access.  Simply copy and paste into your list of Works Cited.]</center></span></div>");