

function setFontSize() {

  // IE...
  this.test.comm_history.style.fontSize = "18px";
  this.test.user_input.style.fontSize = "18px";

  // TODO Netscape...

}

function scrollDown() {

  if (document.test.comm_history.createTextRange) {
    var range = document.test.comm_history.createTextRange();
    range.collapse(false);
    range.select();
  }
  else { // what do I do for NS??
//          document.dummyForm.suggestions.select();
  }

}

 
function fwWriteDate() {
	var month;
	Stamp = new Date();
	if(Stamp.getMonth() == "0" || Stamp.getMonth() == 0)
	{month = "January"}
	else if(Stamp.getMonth() == "1" || Stamp.getMonth() == 1)
	{month = "February"}
	else if(Stamp.getMonth() == "2" || Stamp.getMonth() == 2)
	{month = "March"}
	else if(Stamp.getMonth() == "3" || Stamp.getMonth() == 3)
	{month = "April"}
	else if(Stamp.getMonth() == "4" || Stamp.getMonth() == 4)
	{month = "May"}
	else if(Stamp.getMonth() == "5" || Stamp.getMonth() == 5)
	{month = "June"}
	else if(Stamp.getMonth() == "6" || Stamp.getMonth() == 6)
	{month = "July"}
	else if(Stamp.getMonth() == "7" || Stamp.getMonth() == 7)
	{month = "August"}
	else if(Stamp.getMonth() == "8" || Stamp.getMonth() == 8)
	{month = "September"}
	else if(Stamp.getMonth() == "9" || Stamp.getMonth() == 9)
	{month = "October"}
	else if(Stamp.getMonth() == "10" || Stamp.getMonth() == 10)
	{month = "November"}
	else if(Stamp.getMonth() == "11" || Stamp.getMonth() == 11)
	{month = "December"}
	document.write('' + month +'&nbsp;&nbsp;'+Stamp.getDate() + ',&nbsp;&nbsp;' + Stamp.getFullYear() );
	
} // fwWriteDate
