function printLeftMenu(menuList, subMenu, subMenuList, subMenuItem)
{
if (self.location.search == "?print") {}
else {
insertPoint = subMenu;
allProducts = '<img src="/images/site/blackrightarrow.gif" width="5" height="7" border="0" alt=""> <a href="/products/index.html">Products A-Z Home</a>';

menuHTML = allProducts;
for (var i=0; i<menuList.length; i++) {

	if (menuList[i] == 'educational')
		{
			menuHTML = menuHTML + '<br><img src="/images/site/blackrightarrow.gif" width="5" height="7" border="0" alt=""> <a href="/products/groupindex.html">Educational</a>';
		if (subMenu == 'product')
			{
				for (var l=0; l<subMenuList.length; l++) {
					if (subMenuList[l] == 'ability')
					{
							menuHTML = menuHTML + '<br>&nbsp;&nbsp;&nbsp;<img src="/images/site/right_ar_bl.gif" width="11" height="10" border="0" alt=""> <a href="/products/groupindex.html#ability">Ability</a>';
					}
					
					if (subMenuList[l] == 'achievement')
					{
							menuHTML = menuHTML + '<br>&nbsp;&nbsp;&nbsp;<img src="/images/site/right_ar_bl.gif" width="11" height="10" border="0" alt=""> <a href="/products/groupindex.html#achievement">Achievement</a>';
					}
					
					if (subMenuList[l] == 'criterion')
					{
							menuHTML = menuHTML + '<br>&nbsp;&nbsp;&nbsp;<img src="/images/site/right_ar_bl.gif" width="11" height="10" border="0" alt=""> <a href="/products/groupindex.html#criterion">Criterion Resources</a>';
					}
					if (subMenuList[l] == 'performance')
					{
							menuHTML = menuHTML + '<br>&nbsp;&nbsp;&nbsp;<img src="/images/site/right_ar_bl.gif" width="11" height="10" border="0" alt=""> <a href="/products/groupindex.html#performance">Performance Assessment</a>';
					}
					
					if (subMenuList[l] == 'reading')
					{
							menuHTML = menuHTML + '<br>&nbsp;&nbsp;&nbsp;<img src="/images/site/right_ar_bl.gif" width="11" height="10" border="0" alt=""> <a href="/products/groupindex.html#reading">Reading</a>';
					}
					
					if (subMenuList[l] == 'software')
					{
							menuHTML = menuHTML + '<br>&nbsp;&nbsp;&nbsp;<img src="/images/site/right_ar_bl.gif" width="11" height="10" border="0" alt=""> <a href="/products/groupindex.html#software">Software</a>';
					}
					
					if (subMenuList[l] == 'test')
					{
							menuHTML = menuHTML + '<br>&nbsp;&nbsp;&nbsp;<img src="/images/site/right_ar_bl.gif" width="11" height="10" border="0" alt=""> <a href="/products/groupindex.html#test">Test</a>';
					}
					
				}
			}
		}
		
	if (menuList[i] == 'clinical')
		{
		menuHTML = menuHTML + '<br><img src="/images/site/blackrightarrow.gif" width="5" height="7" border="0" alt=""> <a href="/products/clinicalindex.html" >Clinical</a>';
		}
		
	if (menuList[i] == 'order')
		{
		menuHTML = menuHTML + '<br><img src="/images/site/blackrightarrow.gif" width="5" height="7" border="0" alt=""> <a href="/sales/ordering.html" >How to Order</a>';
		if (subMenu == 'technical')
			{
				for (var n=0; n<subMenuList.length; n++) {
					if (subMenuList[n] == 'validity')
					{
							menuHTML = menuHTML + '<br>&nbsp;&nbsp;&nbsp;<img src="/images/site/right_ar_bl.gif" width="11" height="10" border="0" alt=""> <a href="/products/technical.html#validity">Validity</a>';
					}
					
					if (subMenuList[n] == 'standardization')
					{
							menuHTML = menuHTML + '<br>&nbsp;&nbsp;&nbsp;<img src="/images/site/right_ar_bl.gif" width="11" height="10" border="0" alt=""> <a href="/products/technical.html#standardization">Standardization</a>';
					}
				}
			}
		}
		
	if (menuList[i] == 'support')
		{
		menuHTML = menuHTML + '<br><img src="/images/site/blackrightarrow.gif" width="5" height="7" border="0" alt=""> <a href="/support/index.html">Support</a>';
		if (subMenu == 'support')
			{
				for (var n=0; n<subMenuList.length; n++) {
					if (subMenuList[n] == 'request')
					{
							menuHTML = menuHTML + '<br>&nbsp;&nbsp;&nbsp;<img src="/images/site/right_ar_bl.gif" width="11" height="10" border="0" alt=""> <a href="/products/support.html#request">Support Request</a>';
					}
					
					if (subMenuList[n] == 'faq')
					{
						menuHTML = menuHTML + '<br>&nbsp;&nbsp;&nbsp;<img src="/images/site/right_ar_bl.gif" width="11" height="10" border="0" alt=""> <a href="/products/support.html#faq">Software FAQs</a>';
					}
				}
			}
		}
		
	if (menuList[i] == 'training')
	{
		menuHTML = menuHTML + '<br><img src="/images/site/blackrightarrow.gif" width="5" height="7" border="0" alt=""> <a href="/products/training.html" >Training</a>';
	}	

	if (menuList[i] == 'catalog')
	{
		menuHTML = menuHTML + '<br><img src="/images/site/blackrightarrow.gif" width="5" height="7" border="0" alt=""> <a href="/catalog/index.html" >Online Catalogs</a>';
	}	
}

document.write(menuHTML);
}
}

