// No Leeches - Skip Levens
if (parent.location != self.location)
parent.location = 'http://www.legacyportal.com';

// Date Formatter - Skip Levens

var newDate = new Date()

var newDay  = newDate.getDay();
	if (newDay == 0){ formattedDay = "Sunday";}
	if (newDay == 1){ formattedDay = "Monday";}
	if (newDay == 2){ formattedDay = "Tuesday";}
	if (newDay == 3){ formattedDay = "Wednesday";}
	if (newDay == 4){ formattedDay = "Thursday";}
	if (newDay == 5){ formattedDay = "Friday";}
	if (newDay == 6){ formattedDay = "Saturday";}

var newMonth = newDate.getMonth();
	if (newMonth == 0){ formattedMonth = "January";}
	if (newMonth == 1){ formattedMonth = "February";}
	if (newMonth == 2){ formattedMonth = "March";}
	if (newMonth == 3){ formattedMonth = "April";}
	if (newMonth == 4){ formattedMonth = "May";}
	if (newMonth == 5){ formattedMonth = "June";}
	if (newMonth == 6){ formattedMonth = "July";}
	if (newMonth == 7){ formattedMonth = "August";}
	if (newMonth == 8){ formattedMonth = "September";}
	if (newMonth == 9){ formattedMonth = "October";}
	if (newMonth == 10){ formattedMonth = "November";}
	if (newMonth == 11){ formattedMonth = "December";}

var newDate = newDate.getDate();
	if (newDate == 1){ formattedDate = "1st";}
	if (newDate == 2){ formattedDate = "2nd";}
	if (newDate == 3){ formattedDate = "3rd";}
	if (newDate == 4){ formattedDate = "4th";}
	if (newDate == 5){ formattedDate = "5th";}
	if (newDate == 6){ formattedDate = "6th";}
	if (newDate == 7){ formattedDate = "7th";}
	if (newDate == 8){ formattedDate = "8th";}
	if (newDate == 9){ formattedDate = "9th";}
	if (newDate == 10){ formattedDate = "10th";}
	if (newDate == 11){ formattedDate = "11th";}
	if (newDate == 12){ formattedDate = "12th";}
	if (newDate == 13){ formattedDate = "13th";}
	if (newDate == 14){ formattedDate = "14th";}
	if (newDate == 15){ formattedDate = "15th";}
	if (newDate == 16){ formattedDate = "16th";}
	if (newDate == 17){ formattedDate = "17th";}
	if (newDate == 18){ formattedDate = "18th";}
	if (newDate == 19){ formattedDate = "19th";}
	if (newDate == 20){ formattedDate = "20th";}
	if (newDate == 21){ formattedDate = "21st";}
	if (newDate == 22){ formattedDate = "22nd";}
	if (newDate == 23){ formattedDate = "23rd";}
	if (newDate == 24){ formattedDate = "24th";}
	if (newDate == 25){ formattedDate = "25th";}
	if (newDate == 26){ formattedDate = "26th";}
	if (newDate == 27){ formattedDate = "27th";}
	if (newDate == 28){ formattedDate = "28th";}
	if (newDate == 29){ formattedDate = "29th";}
	if (newDate == 30){ formattedDate = "30th";}
	if (newDate == 31){ formattedDate = "31st";}
