<!-- JavaScript Submenu Functions - Begin -->

var stopiccount ;	//The number of subtopics

//define subtopicdef custom object
function subtopicdef(topicname, level, label, page) { 
        this.topicname = topicname
        this.level = level
        this.label = label
        this.page = page
} 

//display submenu 
function WriteSubmenu() {
 	document.write('<TD valign="top" align="left" width="155" height="600">')
 	document.write('<TABLE cellspacing="0" cellpadding="0" border="0"><TBODY>')
	document.write('	<TR>')
	document.write('		<TD colspan="2" valign="top" align="left" width="155"><IMG height="10" src="/images/white.jpg" width="155" border="0"></TD>')
	document.write('	</TR>')
	document.write('	<TR>')
	document.write('		<TD colspan="2" valign="top" align="left" width="155"><IMG height="1" src="/images/003366.jpg" width="155" border="0"></TD>')
	document.write('	</TR>')
	
	for (i=0; i<stopiccount; ++i) {
		document.write('	<TR>')	
		if (subtopic[i].level == 1) {
			if (subtopic[i].label == 1) {
				document.write('		<TD width="155" colspan="2" align="MIDDLE" valign="center" bgcolor="#EDEDED"><DIV class="navsublabel">' + subtopic[i].topicname + '</DIV></TD>')
			}
			else {
				if (subtopic[i].page == stopicpage) {
					document.write('		<TD bgcolor="#ffdbb7" colspan="2" valign="center" align="left" width="155"><DIV class="navsubitem"><A href="' + subtopic[i].page + '">' + subtopic[i].topicname + '</A></DIV></TD>')
				}
				else {
					document.write('		<TD colspan="2" valign="center" align="left" width="155"><DIV class="navsubitem"><A href="' + subtopic[i].page + '">' + subtopic[i].topicname + '</A></DIV></TD>')
				}
			}
		}
		else {
			if (subtopic[i].label == 1) {
				document.write('		<TD bgcolor="#EDEDED" valign="top" align="left" width="10"><IMG src="/images/spacer.gif" width="0" height="0" border="0"></TD>')
				document.write('		<TD bgcolor="#EDEDED" valign="center" align="left" width="145"><DIV class="navsublabel">' + subtopic[i].topicname + '</DIV></TD>')
			}
			else {
				if (subtopic[i].page == stopicpage) {
					document.write('		<TD bgcolor="#ffdbb7" valign="top" align="left" width="10"><IMG src="/images/spacer.gif" width="1" height="1" border="0"></TD>')
					document.write('		<TD bgcolor="#ffdbb7" valign="center" align="left" width="145"><DIV class="navsubitem"><A href="' + subtopic[i].page + '">' + subtopic[i].topicname + '</A></DIV></TD>')
				}
				else {
					document.write('		<TD valign="top" align="left" width="10"><IMG src="/images/white.jpg" width="1" border="0"></TD>')
					document.write('		<TD valign="center" align="left" width="145"><DIV class="navsubitem"><A href="' + subtopic[i].page + '">' + subtopic[i].topicname + '</A></DIV></TD>')
				}
			}
		}
		document.write('	</TR>')		
		document.write('	<TR>')
		document.write('		<TD colspan="2" valign="top" align="left" width="155"><IMG height="1" src="/images/003366.jpg" width="155" border="0"></TD>')
		document.write('	</TR>')
	}	
	document.write('</TBODY>')
    document.write('</TABLE>')
	document.write('</TD>')	
	document.write('<TD valign="top" align="left" width="8"><IMG height="1" src="/images/spacer.gif" width="8" border="0"></TD>')		
}

function WriteCSmenu() {
	for (i=0; i<stopiccount; ++i) {
		document.write('	<TR>')	
		if (subtopic[i].level == 1) {
			if (subtopic[i].label == 1) {
				document.write('		<TD width="155" colspan="2" align="MIDDLE" valign="center" bgcolor="#EDEDED"><DIV class="navsublabel">' + subtopic[i].topicname + '</DIV></TD>')
			}
			else {
				if (subtopic[i].page == stopicpage) {
					document.write('		<TD bgcolor="#ffdbb7" colspan="2" valign="center" align="left" width="155"><DIV class="navsubitem"><A href="/support/' + subtopic[i].page + '">' + subtopic[i].topicname + '</A></DIV></TD>')
				}
				else {
					document.write('		<TD colspan="2" valign="center" align="left" width="155"><DIV class="navsubitem"><A href="/support/' + subtopic[i].page + '">' + subtopic[i].topicname + '</A></DIV></TD>')
				}
			}
		}
		else {
			if (subtopic[i].label == 1) {
				document.write('		<TD bgcolor="#EDEDED" valign="top" align="left" width="10"><IMG src="/images/spacer.gif" width="0" height="0" border="0"></TD>')
				document.write('		<TD bgcolor="#EDEDED" valign="center" align="left" width="145"><DIV class="navsublabel">' + subtopic[i].topicname + '</DIV></TD>')
			}
			else {
				if (subtopic[i].page == stopicpage) {
					document.write('		<TD bgcolor="#ffdbb7" valign="top" align="left" width="10"><IMG src="/images/spacer.gif" width="1" height="1" border="0"></TD>')
					document.write('		<TD bgcolor="#ffdbb7" valign="center" align="left" width="145"><DIV class="navsubitem"><A href="/support/' + subtopic[i].page + '">' + subtopic[i].topicname + '</A></DIV></TD>')
				}
				else {
					document.write('		<TD valign="top" align="left" width="10"><IMG src="/images/white.jpg" width="1" border="0"></TD>')
					document.write('		<TD valign="center" align="left" width="145"><DIV class="navsubitem"><A href="/support/' + subtopic[i].page + '">' + subtopic[i].topicname + '</A></DIV></TD>')
				}
			}
		}
		document.write('	</TR>')		
		document.write('	<TR>')
		document.write('		<TD colspan="2" valign="top" align="left" width="155"><IMG height="1" src="/images/003366.jpg" width="155" border="0"></TD>')
		document.write('	</TR>')	
	}	
}
<!-- JavaScript Submenu Functions - End -->
//-->
