
/**
	***---------------------------------------------------------***
	*	FAQTools.js
	***---------------------------------------------------------***
	*	Artware Studios
	*	Send A Blessing
	*	27 May 2007	tb
	*
	*	This file includes Javascript utility functions for faqPage.php .
	*/

function focusOnTopic(theTopic)
{
		var theElementID = "None";
	switch(theTopic)
	{//Set element ID.
		case 1:
				theElementID = "viewPageNoScroll";
			break;
		case 2:
				theElementID = "returnToSendCard";
			break;
		case 3:
				theElementID = "importAddresses";
			break;
		default:
				theElementID = "None";
			break;
	}//switch(theTopic)
	if (theElementID != "None")
	{//Focus on the element.
		var theElement = document.getElementById(theElementID);
		theElement.focus();
	}//if (theElementID != "0")
}//function focusOnTopic(theTopic)


