// JavaScript Document

function highlight_div(checkbox_node) //highlights selected items within the styled ordered lists that stand as substitutes for the multi-select boxes
{	
    label_node = checkbox_node.parentNode;

    if (checkbox_node.checked)
	{
		label_node.style.color='#495B82';
	}
	else
	{
		label_node.style.color='#000';
	}
}

function toggleVis(block, chkBox) {
		var obj = document.getElementById(block);
		
		var displayIt = document.forms[0].elements[chkBox].checked;
		
		if ( displayIt ) obj.style.display = 'block';
		else obj.style.display = 'none';
	}