/*Stop and Start Latest News Scroller*/
	  function stopScroll(id) {
			 				{document.getElementById(id).scrollAmount='0';}
		}
        	
		function startScroll(id) {
			 			 {document.getElementById(id).scrollAmount='1';}
		}

/*Show and hide Management sub nav*/
		function NavShow(ele) {
						 {ele.className='visible';}
		}
		function NavHide(ele) {
						 {ele.className='';}
		}

/* Show and hide Info Boxes*/
		function ShowInfo(id) {
						 {document.getElementById(id).style.display='block';}
		}
		function HideInfo(id) {
						 {document.getElementById(id).style.display='none';}
		}


/* Opens Solution Diagram Window */

	 function OpenDiagram(){
	 					window.open("solution_diagram.asp", "solution", 'toolbar=false,width=600,height=600') 
	 }
	 
/* Jump Menu */


function openDir( form ) { 

	var newIndex = form.fieldname.selectedIndex; 

	if ( newIndex == 0 ) { 

		alert( "Please select a location!" ); 

	} else { 

		cururl = form.fieldname.options[ newIndex ].value; 

		window.location.assign( cururl ); 

	} 

}