<!--
function MakeChapter()
{
	chap = document.forms[0].chapter.selectedIndex + 1
	if (chap < 10) href = "0" + chap
	else href = "" + chap
	return href
}

function DoMcqs()
{
	href = "/scripts/Roitt/mcq2.asp?chap=" + MakeChapter() + "&q=0001"
	window.location.href = href
}

function DoCaseStudies()
{
	href = "/chap" + MakeChapter() + "/case1.htm"
	window.location.href = href
}

function DoRefs()
{
	strChap = MakeChapter()
//	href = "/scripts/Roitt/refs.asp?chap=" + strChap
	href = "/refs2.asp?chap=" + strChap
	window.location.href = href
}

function DoImages()
{
	strChap = MakeChapter()
//	href = "/scripts/Roitt/sub/images.asp?chap=" + strChap
	href = "/scripts/Roitt/sub/images" + strChap + ".asp"
	window.location.href = href
}

function DoUpdates()
{
	chap = document.forms[0].chapter.selectedIndex + 1
	href = "/scripts/Roitt/sub/updates.asp#chap" + chap
	window.location.href = href
}

function DoCoreTuts()
{
	strChap = MakeChapter()
	href = "/coretut2.asp?chap=" + strChap
	window.location.href = href
}
function Dohottop()
{
	strChap = MakeChapter()
	href = "/hottop.asp?chap=" + strChap
	window.location.href = href
}
// -->