
      var theTitle = "";
//      theTitle = parent.frame4.document.title
//if(parent.rbottom.document.title)
//   { 
//   alert("true")
   theTitle = parent.rbottom.document.title;
//   }
//else
//   {
//   alert("false"); 
//   }
var pos = theTitle.indexOf('*');
var cCat = theTitle.substring(0, pos);
var newTitle = theTitle.substring(pos+1, theTitle.length);

      if(theTitle == "Dallas Burdette" || theTitle == "") 
	{
	var Day = "";
	var Month = "";
	var Year = "";

	var theDate = new Date();
	var thisDay = theDate.getDay();  //of week
	var thisMonth = theDate.getMonth();
	var thisDate = theDate.getDate(); //day of month
	var thisYear = theDate.getYear();
	if(thisDay == 0) Day = "Sunday";
	if(thisDay == 1) Day = "Monday";
	if(thisDay == 2) Day = "Tuesday";
	if(thisDay == 3) Day = "Wednesday";
	if(thisDay == 4) Day = "Thursday";
	if(thisDay == 5) Day = "Friday";
	if(thisDay == 6) Day = "Saturday";

	if(thisMonth == 0) Month = "January";
	if(thisMonth == 1) Month = "February";
	if(thisMonth == 2) Month = "March";
	if(thisMonth == 3) Month = "April";
	if(thisMonth == 4) Month = "May";
	if(thisMonth == 5) Month = "June";
	if(thisMonth == 6) Month = "July";
	if(thisMonth == 7) Month = "August";
	if(thisMonth == 8) Month = "September";
	if(thisMonth == 9) Month = "October";
	if(thisMonth == 10) Month = "November";
	if(thisMonth == 11) Month = "December";


//	Year = "19" + thisYear;
	Year = thisYear;
	document.write("<div class=date align=\"center\">");
	document.write("<strong>");
	document.write("<font color=\"white\">");
	document.write(Day + ", " + Month + " " + thisDate + ", " + Year);
	document.write();
	document.write("</strong>");
	document.write("</div>");
	}
     else
	{	
	document.write("<div class=docCat>");
	document.write("<strong>");
	document.write("<font color=\"yellow\">");
	document.write(cCat);
	document.write("</strong>");
	document.write("</div>");

	document.write("<div class=docTitle>");
	document.write("<strong>");
	document.write("<font size=\"4\" color=\"white\">");
//	document.write("<p><font color=\"#FFFFFF\">Title of article goes here</font></p>");
	document.write(newTitle);
	document.write("</strong>");
	document.write("</div>");
	}







