function message (t1, t2) {
	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));
	p.appendChild (document.getElementById(t2));
	p_prime = p.cloneNode(true);

	document.getElementById ('output').appendChild (p);
	document.getElementById ('divwrapper').appendChild (p_prime);
}

