<!--
// set defaults for browser width and height.  These default numbers will be used if the viewer's browser version is <3
var browserWidth = 630, browserHeight = 460;

function drawRoundTabTopsStart() {
  	document.writeln ('<TABLE ALIGN="CENTER" CELLPADDING="0" CELLSPACING="0" BORDER="0">');
  	document.writeln ('<TR height="5" align="left" valign="top">');
}

function drawRoundTabTops(elemlist,basewidth) {
	// count how many different categories there are (as passed in comma-seperated format in the variable 'elemlist')
	var elemquan=0;
	var elems = new Array();
	elems[0] = '';
	for (var x=0; x<=elemlist.length; x++) {
		if(elemlist.charAt(x)==','){
			elemquan++;
			elems[elemquan] = '';
		}else{
			elems[elemquan] = elems[elemquan] + elemlist.charAt(x);
		}
	}

	// set center-td width based on basewidth divided number of categories
	tdwidth = Math.round(basewidth/elemquan);
	
	// draw a rounded menu top for each detected category
	for (x=0; x<=elemquan; x++) {
		document.writeln ('<TD id="'+elems[x]+'topMenur1c1" width="5" height="5" class="topMenu_top_left" align="left" valign="top"><img src="/media/nav/clear.gif" width="5" height="5" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur1c2" width="'+tdwidth+'" height="5" class="topMenu_top_mid" align="left" valign="top"><img src="/media/nav/clear.gif" height="5" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur1c3" width="5" height="5" class="topMenu_top_right" align="left" valign="top"><img src="/media/nav/clear.gif" width="5" height="5" border="0"></TD>');
	}
}

function drawRoundTabTopsHighlighted(elemlist,basewidth) {
	// count how many different categories there are (as passed in comma-seperated format in the variable 'elemlist')
	var elemquan=0;
	var elems = new Array();
	elems[0] = '';
	for (var x=0; x<=elemlist.length; x++) {
		if(elemlist.charAt(x)==','){
			elemquan++;
			elems[elemquan] = '';
		}else{
			elems[elemquan] = elems[elemquan] + elemlist.charAt(x);
		}
	}

	// set center-td width based on basewidth divided number of categories
	tdwidth = Math.round(basewidth/elemquan);
	
	// draw a rounded menu top for each detected category
	for (x=0; x<=elemquan; x++) {
		document.writeln ('<TD id="'+elems[x]+'topMenur1c1" width="5" height="5" class="topMenu_top_left_hlt" align="left" valign="top"><img src="/media/nav/clear.gif" width="5" height="5" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur1c2" width="'+tdwidth+'" height="5" class="topMenu_top_mid_hlt" align="left" valign="top"><img src="/media/nav/clear.gif" height="5" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur1c3" width="5" height="5" class="topMenu_top_right_hlt" align="left" valign="top"><img src="/media/nav/clear.gif" width="5" height="5" border="0"></TD>');
	}
}

function drawRoundTabTopsEnd() {
	document.writeln ('</TR>');
  	document.writeln ('<TR height="18" align="left" valign="top">');
}

function drawRoundTabLeft(elem,cookieStr) {
	document.writeln ('<TD id="'+elem+'topMenur2c1" width="5" height="18" class="topMenu_bot_left" align="left" valign="top"><img src="/media/nav/clear.gif" width="5" height="18" border="0"></TD>');
	document.writeln ('<TD id="'+elem+'topMenur2c2" height="18" class="topMenu_bot_mid" align="center" onClick="setCookie(\'oztreemenuvar\',cookieStr);" onMouseOver="mouseIsoverMenu2(\''+elem+'\');" onMouseOut="mouseIsoutMenu2(\''+elem+'\');" nowrap>&nbsp;');
}

function drawRoundTabRight(elem) {
	document.writeln ('&nbsp;</TD>');
	document.writeln ('<TD id="'+elem+'topMenur2c3" width="5" height="18" class="topMenu_bot_right" align="left" valign="top"><img src="/media/nav/clear.gif" width="5" height="18" border="0"></TD>');
}

function drawRoundTabLeftHighlighted(elem,cookieStr) {
	document.writeln ('<TD id="'+elem+'topMenur2c1" width="5" height="18" class="topMenu_bot_left_hlt" align="left" valign="top"><img src="/media/nav/clear.gif" width="5" height="18" border="0"></TD>');
	document.writeln ('<TD id="'+elem+'topMenur2c2" height="18" class="topMenu_bot_mid_hlt" align="center" onClick="setCookie(\'oztreemenuvar\',cookieStr);" onMouseOver="mouseIsoverMenu2(\''+elem+'\');" onMouseOut="mouseIsoutMenu2(\''+elem+'\');" nowrap>&nbsp;');
}		

function drawRoundTabRightHighlighted(elem) {
	document.writeln ('&nbsp;</TD>');
	document.writeln ('<TD id="'+elem+'topMenur2c3" width="5" height="18" class="topMenu_bot_right_hlt" align="left" valign="top"><img src="/media/nav/clear.gif" width="5" height="18" border="0"></TD>');
}

function drawRoundTabEnd() {
	document.writeln ('</TR>');
	document.writeln ('</TABLE>');
}

function mouseIsoverMenu2(elem) {
	// set classes to Hovers for all of the drawRoundedTops() <td>'s
	var check=document.getElementById(elem+'topMenur2c1');
	if(check!=null) {
		if(document.getElementById(elem+'topMenur2c1').className=='topMenu_bot_left_hlt') {
			document.getElementById(elem+'topMenur2c1').className='topMenu_bot_left_hlt_h';
		}else{
			document.getElementById(elem+'topMenur2c1').className='topMenu_bot_left_h';
		}
	}	
	var check=document.getElementById(elem+'topMenur2c2');
	if(check!=null) {
		if(document.getElementById(elem+'topMenur2c2').className=='topMenu_bot_mid_hlt') {
			document.getElementById(elem+'topMenur2c2').className='topMenu_bot_mid_hlt_h';
		}else{
			document.getElementById(elem+'topMenur2c2').className='topMenu_bot_mid_h';
		}
	}	
	var check=document.getElementById(elem+'topMenur2c1');
	if(check!=null) {
		if(document.getElementById(elem+'topMenur2c3').className=='topMenu_bot_right_hlt') {
			document.getElementById(elem+'topMenur2c3').className='topMenu_bot_right_hlt_h';
		}else{
			document.getElementById(elem+'topMenur2c3').className='topMenu_bot_right_h';
		}
	}	

	// set classes to Hovers for the <a> and the <td>
//	document.getElementById(elem+'topMenuA').className='AfortopMenuHover';
//	document.getElementById(elem+'topMenuMAIN').className='topMenuHover';

}

function mouseIsoutMenu2(elem) {
	// set classes to non-Hovers for all of the drawRoundedTops() <td>'s
	var check=document.getElementById(elem+'topMenur2c1');
	if(check!=null) {
		if(document.getElementById(elem+'topMenur2c1').className=='topMenu_bot_left_hlt_h') {
			document.getElementById(elem+'topMenur2c1').className='topMenu_bot_left_hlt';
		}else{
			document.getElementById(elem+'topMenur2c1').className='topMenu_bot_left';
		}
	}	
	var check=document.getElementById(elem+'topMenur2c2');
	if(check!=null) {
		if(document.getElementById(elem+'topMenur2c2').className=='topMenu_bot_mid_hlt_h') {
			document.getElementById(elem+'topMenur2c2').className='topMenu_bot_mid_hlt';
		}else{
			document.getElementById(elem+'topMenur2c2').className='topMenu_bot_mid';
		}
	}	
	var check=document.getElementById(elem+'topMenur2c1');
	if(check!=null) {
		if(document.getElementById(elem+'topMenur2c3').className=='topMenu_bot_right_hlt_h') {
			document.getElementById(elem+'topMenur2c3').className='topMenu_bot_right_hlt';
		}else{
			document.getElementById(elem+'topMenur2c3').className='topMenu_bot_right';
		}
	}	
	// set classes to Hovers for the <a> and the <td>
//	document.getElementById(elem+'topMenuA').className='AfortopMenu';
//	document.getElementById(elem+'topMenuMAIN').className='topMenu';
}

function mouseIsoverMenu(elem) {
	// set classes to Hovers for all of the drawRoundedTops() <td>'s
	document.getElementById(elem+'topMenur2cMID').className='cropMenuHover';
	document.getElementById(elem+'topMenur3cMID').className='cropMenuHover';
	document.getElementById(elem+'topMenur4cMID').className='cropMenuHover';

	// set classes to Hovers for the <a> and the <td>
//	document.getElementById(elem+'topMenuA').className='AfortopMenuHover';
	document.getElementById(elem+'topMenuMAIN').className='topMenuHover';

}

function mouseIsoutMenu(elem) {
	// set classes to non-Hovers for all of the drawRoundedTops() <td>'s
	document.getElementById(elem+'topMenur2cMID').className='cropMenu';
	document.getElementById(elem+'topMenur3cMID').className='cropMenu';
	document.getElementById(elem+'topMenur4cMID').className='cropMenu';

	// set classes to Hovers for the <a> and the <td>
//	document.getElementById(elem+'topMenuA').className='AfortopMenu';
	document.getElementById(elem+'topMenuMAIN').className='topMenu';
}

function drawRoundedTops(elemlist,basewidth) {
	// count how many different categories there are (as passed in comma-seperated format in the variable 'elemlist')
	var elemquan=0;
	var elems = new Array();
	elems[0] = '';
	for (var x=0; x<=elemlist.length; x++) {
		if(elemlist.charAt(x)==','){
			elemquan++;
			elems[elemquan] = '';
		}else{
			elems[elemquan] = elems[elemquan] + elemlist.charAt(x);
		}
	}

	// set center-td width based on screen resolution and number of categories
	var widthToUse=browserWidth;
	// this if statement detects whether or not the user is running Netscape.  For some reason, in Netscape the menu overextends the window, so we must make it smaller
	// NOTE: The problem only occurs in Netscape 6.0 as far as I can tell, but subtracting from the width for FireFox, Netscape 7.1 or 4.79 does not seem to have any adverse effect...
	if (navigator.appName.indexOf("Netscape")!=-1) {
		widthToUse=widthToUse-475;
	}else{
		widthToUse=widthToUse-450;	
	}

	var tdwidth = Math.round((widthToUse-(6*elemquan))/elemquan);
	tdwidth = Math.round(basewidth/elemquan);
	
	// draw a rounded menu top for each detected category
  	document.write ('<TR height="1" align="left" valign="top">');
	for (x=0; x<=elemquan; x++) {
		document.writeln ('<TD id="'+elems[x]+'topMenur1c1" width="5" colspan="5" class="background" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur1cMID" width="'+tdwidth+'" class="topMenuBorder" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur1c-1" width="5" colspan="5" class="background" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
	}
	document.write ('</TR>');
  	document.write ('<TR height="1" align="left" valign="top">');
	for (x=0; x<=elemquan; x++) {
		document.writeln ('<TD id="'+elems[x]+'topMenur2c1" width="3" colspan="3" class="background" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur2c4" width="2" colspan="2" class="topMenuBorder" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur2cMID" width="'+tdwidth+'" class="cropMenu" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur2c-4" width="2" colspan="2" class="topMenuBorder" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur2c-1" width="3" colspan="3" class="background" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
	}
	document.write ('</TR>');
	var thistdwidth = tdwidth + 4;
	document.write ('<TR height="1" align="left" valign="top">');
	for (x=0; x<=elemquan; x++) {
		document.writeln ('<TD id="'+elems[x]+'topMenur3c1" width="2" class="background" colspan="2" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur3c3" width="1" class="topMenuBorder" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur3cMID" width="'+thistdwidth+'" colspan="5" class="cropMenu" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur3c-3" width="1" class="topMenuBorder" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur3c-1" width="2" class="background" colspan="2" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
	}
	document.write ('</TR>');
	thistdwidth = tdwidth + 6;
	document.write ('<TR height="2" align="left" valign="top">');
	for (x=0; x<=elemquan; x++) {
		document.writeln ('<TD id="'+elems[x]+'topMenur4c1" width="1" class="background" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur4c2" width="1" class="topMenuBorder" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur4cMID" width="'+thistdwidth+'" colspan="7" class="cropMenu" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur4c-2" width="1" class="topMenuBorder" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
		document.writeln ('<TD id="'+elems[x]+'topMenur4c-1" width="1" class="background" align="left" valign="top"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
	}
	document.write ('</TR>');
}

function detectBrowserWH() {
	if (parseInt(navigator.appVersion)>3) {
		if (navigator.appName=="Netscape") {
			browserWidth = window.innerWidth;
			browserHeight = window.innerHeight;
		}
		if (navigator.appName.indexOf("Microsoft")!=-1) {
			browserWidth = document.body.offsetWidth;
			browserHeight = document.body.offsetHeight;
		}
	}
	var maintdwidth=(browserWidth-300);
}

function drawMainTD(tags) {
	// this function simply outputs a <TD> tag with an integer valued width based on screen width as well as whatever is passed in the tags variable

	// set the width variable for this main TD to the width of the browser screen minus 300 pixels for the width of the two sidebars
	var maintdwidth=(browserWidth-300);
	
	// output (write to document)
	document.writeln ('<TD WIDTH="'+maintdwidth+'" '+tags+'>');
}

function drawTopMenuBorderTD(num) {
	// The num variable which is passed to this function just determines how many border TD's to write
	for (x=1; x<=num; x++) {
		document.writeln ('<TD width="1" class="topMenuBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
	}
}


function drawTopMenuBottoms(num) {
	// The num variable which is passed to this function just determines how many border TD's to write
	for (x=1; x<=num; x++) {
		document.writeln ('<TD class="topMenuBorder" colspan="11" nowrap><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
	}
}

function drawBoxTopPt1(id) {
document.writeln ('<TABLE WIDTH="190" VALIGN="MIDDLE" ALIGN="CENTER" CELLPADDING="0" CELLSPACING="0" BORDER="0">');
document.writeln ('	<TR height="1">');
document.writeln ('	<TD id="'+id+'BoxTopr1c1" width="5" colspan="5"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr1cMID" width="180" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr1c-1" width="5" colspan="5"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="1">');
document.writeln ('	<TD id="'+id+'BoxTopr2c1" width="3" colspan="3"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr2c4" width="2" colspan="2" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr2cMID" width="180" class="boxHeader"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr2c-4" width="2" colspan="2" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr2-1" width="3" colspan="3"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="1">');
document.writeln ('	<TD id="'+id+'BoxTopr3c1" width="2" colspan="2"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr3c3" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr3cMID" width="184" colspan="5" class="boxHeader"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr3c-3" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr3-1" width="2" colspan="2"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="2">');
document.writeln ('	<TD id="'+id+'BoxTopr4c1" width="1"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr4c2" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr4cMID" width="186" colspan="7" class="boxHeader"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr4c-2" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr4-1" width="1"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="10">');
document.writeln ('	<TD id="'+id+'BoxTopr5c1" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.write ('	<TD id="'+id+'BoxTopr5cMID" width="186" colspan="9" class="boxHeader"><b>');
}

function drawBoxTopPt1_EM(id) {
document.writeln ('<TABLE WIDTH="190" VALIGN="MIDDLE" ALIGN="CENTER" CELLPADDING="0" CELLSPACING="0" BORDER="0">');
document.writeln ('	<TR height="1">');
document.writeln ('	<TD id="'+id+'BoxTopr1c1" width="5" colspan="5"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr1cMID" width="180" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr1c-1" width="5" colspan="5"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="1">');
document.writeln ('	<TD id="'+id+'BoxTopr2c1" width="3" colspan="3"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr2c4" width="2" colspan="2" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr2cMID" width="180" class="boxHeader_EM"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr2c-4" width="2" colspan="2" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr2-1" width="3" colspan="3"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="1">');
document.writeln ('	<TD id="'+id+'BoxTopr3c1" width="2" colspan="2"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr3c3" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr3cMID" width="184" colspan="5" class="boxHeader_EM"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr3c-3" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr3-1" width="2" colspan="2"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="2">');
document.writeln ('	<TD id="'+id+'BoxTopr4c1" width="1"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr4c2" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr4cMID" width="186" colspan="7" class="boxHeader_EM"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr4c-2" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr4-1" width="1"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="10">');
document.writeln ('	<TD id="'+id+'BoxTopr5c1" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.write ('	<TD id="'+id+'BoxTopr5cMID" width="186" colspan="9" class="boxHeader_EM"><b>');
}

function drawBoxTopPt2(id) {
document.write ('</b></TD>');
document.writeln ('	<TD id="'+id+'BoxTopr5c-1" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR>');
document.writeln ('	<TD id="'+id+'boxBorderLeft" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'boxMiddle" width="188" colspan="9" class="boxContent">');
document.writeln ('	<img src="/media/nav/clear.gif" width="1" height="5" border="0">');
}

function drawBoxBottom(id) {
document.writeln ('	</TD>');
document.writeln ('	<TD id="'+id+'boxBorderRight" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="1">');
document.writeln ('	<TD id="'+id+'BoxBottomr4c1" width="1"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr4c2" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr4cMID" width="186" colspan="7" class="boxHeader"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr4c-2" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr4-1" width="1"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="1">');
document.writeln ('	<TD id="'+id+'BoxBottomr4c1" width="1"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr4c2" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr4cMID" width="186" colspan="7" class="boxContent"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr4c-2" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr4-1" width="1"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="1">');
document.writeln ('	<TD id="'+id+'BoxBottomr3c1" width="2" colspan="2"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr3c3" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr3cMID" width="184" colspan="5" class="boxHeader"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr3c-3" width="1" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr3-1" width="2" colspan="2"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="1">');
document.writeln ('	<TD id="'+id+'BoxBottomr2c1" width="3" colspan="3"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr2c4" width="2" colspan="2" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr2cMID" width="180" class="boxContent"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr2c-4" width="2" colspan="2" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr2-1" width="3" colspan="3"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('	<TR height="1">');
document.writeln ('	<TD id="'+id+'BoxBottomr1c1" width="5" colspan="5"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr1cMID" width="180" class="boxBorder"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	<TD id="'+id+'BoxBottomr1c-1" width="5" colspan="5"><img src="/media/nav/clear.gif" width="1" height="1" border="0"></TD>');
document.writeln ('	</TR>');
document.writeln ('</TABLE>');
}

// -->

