<!--

		var YourDate = new Date();
		parent.header_loaded = "";
		function ShowDayOfWeek(Day){
			DayText="Today";
			if (Day == 0){DayText = "Sunday,"}
			if (Day == 1){DayText = "Monday,"}
			if (Day == 2){DayText = "Tuesday,"}
			if (Day == 3){DayText = "Wednesday,"}
			if (Day == 4){DayText = "Thursday,"}
			if (Day == 5){DayText = "Friday,"}
			if (Day == 6){DayText = "Saturday,"}
			document.write(DayText);
		}
			
		function ShowMonth(Month){
			MonthText="This Month";
			if (Month == 0){MonthText = "January&nbsp;"}
			if (Month == 1){MonthText = "February&nbsp;"}
			if (Month == 2){MonthText = "March&nbsp;"}
			if (Month == 3){MonthText = "April&nbsp;"}
			if (Month == 4){MonthText = "May&nbsp;"}
			if (Month == 5){MonthText = "June&nbsp;"}
			if (Month == 6){MonthText = "July&nbsp;"}
			if (Month == 7){MonthText = "August&nbsp;"}
			if (Month == 8){MonthText = "September&nbsp;"}
			if (Month == 9){MonthText = "October&nbsp;"}
			if (Month == 10){MonthText = "November&nbsp;"}
			if (Month == 11){MonthText = "December&nbsp;"}
			document.write(" " + MonthText);
		}
			
		function ShowDay(DayDate){
			th="th";
			if (DayDate == 1) {th = "st"}
			if (DayDate == 21) {th = "st"}
			if (DayDate == 31) {th = "st"}
			if (DayDate == 2) {th = "nd"}
			if (DayDate == 22) {th = "nd"}
			if (DayDate == 3) {th = "rd"}
			if (DayDate == 23) {th = "rd"}
			document.write(" " + DayDate);
		}
			
//		function ShowYear(Year){
//			if (Year > 96) {Century = ""}
//			else {Century = "20"}
//			document.write( + Century + Year + " года");
//		}
		function loaded (){
			parent.header_loaded = "true";
		}
	   
	  

              
                    ShowDayOfWeek(YourDate.getDay());
	            ShowDay(YourDate.getDate());
	            ShowMonth(YourDate.getMonth());
//	            ShowYear(YourDate.getYear());
	            if(parent.YourName){
	            document.write(' - ' + parent.YourName);
			  	       }
	                     
             

// -->

