//	var topImage = "../images/ChainedTower.jpg";
//	var altText = "The Truth Challenge!<br /><br />Deprogram Yourself and Break the Chains Around Your Life!";
	var topImage = "";
	var altText = "The Truth Challenge!";
	var topImgWidth=79;
	var topImgHeight=71;

function showCourseHdgs() {	
	document.write('<table border="0" width="600" cellspacing="0" cellpadding="0">');
	document.write('	<tr>');
//	document.write('		<td valign="top" align="left">');
//	document.write('			<img src="' + topImage + '" border=0 alt="' + altText + '" />');
//	document.write('		</td>');
	document.write('		<td valign="middle" class="bodybolditalic">');
	document.write(altText+'<br />');
	document.write('		</td>');
	document.write('	</tr>');
	document.write('</table>');
	document.write('				<hr />');
}	
function goTo(dest) {
	window.location = dest;
}
function setQuestion(q) {
	question = q;
}
function setAnswer(yes, no, unsure) {
	yesDest = yes;
	noDest = no;
	unsureDest = unsure;
}
function processAnswer(ans) {
		if(ans == 'Y') window.location = yesDest;
		if(ans == 'N') window.location = noDest;
		if(ans == 'U') window.location = unsureDest;
}
function showRadioBtns() {
	document.write("<hr /><ul><li>");
	document.write(question+"<br />");
	document.write("<input name=\"Q1\" type=\"radio\" value=\"Y\" onClick=\"processAnswer('Y');\">Yes.<br />");
	document.write("<input name=\"Q1\" type=\"radio\" value=\"N\" onClick=\"processAnswer('N');\">No.<br />");
	document.write("<input name=\"Q1\" type=\"radio\" value=\"U\" onClick=\"processAnswer('U');\">Unsure.");
	document.write("</li></ul>");
}

