// JavaScript Document
	function changeCssClass(objDivID,nameclass)        
	{            
	if(document.getElementById(objDivID).className=='redText')            
	{                
	document.getElementById(objDivID).className = nameclass;            
	}           
	else            
	{                
	document.getElementById(objDivID).className = nameclass;            
	}        
	}            
<!--
	var locationOfBigPic='caption of image to follow';
//-->

function message (t1) {
	if (document.getElementById ('giant-says')) document.getElementById ('output').removeChild (document.getElementById ('giant-says'))
	p = document.createElement ('P')
	p.setAttribute ('id', 'giant-says')
	strong = document.createElement ('STRONG')
	p.appendChild (strong)
	strong.appendChild (document.createTextNode (t1))
	//br = document.createElement ('BR')
	//p.appendChild (br)
	//p.appendChild (document.createTextNode (t2))
	document.getElementById ('output').appendChild (p)
}

