/* ThinkQuest International 2006/2007
   TQ Toolkit - A web building guide for ThinkQuesters (C)
   Your TQ Guides (R)
   Visit http://library.thinkquest.org/06aug/02048/

*/

function getObj(str){
		if (document.all)
			return document.all[str];
		else{
			return document.getElementById(str);
		}
}

function showHide(id){
		if (getObj('Answer' + id).style.display == 'none')
		{
			getObj('Answer' + id).style.display = 'block';
		}
		else
			getObj('Answer' + id).style.display = 'none';
}