<!-- 
	function GetTime() {
		var months=new Array(13);
		months[1]="January";
		months[2]="February";
		months[3]="March";
		months[4]="April";
		months[5]="May";
		months[6]="June";
		months[7]="July";
		months[8]="August";
		months[9]="September";
		months[10]="October";
		months[11]="November";
		months[12]="December";
		var time=new Date();
		var lmonth=months[time.getMonth() + 1];
		var date=time.getDate();
		var year=time.getYear();
		if (year < 2000) year = year + 1900; 
		document.write("<center>" + lmonth + " ");
		document.write(date + ", " + year + "</center>");
}

function nav()
	{
    var w = document.jumpnews.newsl.selectedIndex;
    var url_add = document.jumpnews.newsl.options[w].value;
    window.location.href = url_add;
    }

function boldText(form) 
	{
	strSelection = document.selection.createRange().text;
	if (strSelection =="") 
		{
			return false;
		}
	else
		{
		document.selection.createRange().text = "<b>" + strSelection + "</b>";
		return true;
		}
	}
	
function italicText(form) 
	{
	strSelection = document.selection.createRange().text;
	if (strSelection =="") 
		{
			return false;
		}
	else
		{
		document.selection.createRange().text = "<i>" + strSelection + "</i>";
		return true;
		}
	}	
	
function normalText(form) 
	{
	strSelection = document.selection.createRange().text;
	if (strSelection =="") 
		{
			return false;
		}
	else
		{
		strSelection = strSelection.replace("<i>","")
		strSelection = strSelection.replace("</i>","")
		strSelection = strSelection.replace("<b>","")
		strSelection = strSelection.replace("</b>","")		
		document.selection.createRange().text = strSelection;
		return true;
		}
	}		
	

// -->