// JavaScript Document
	function overMenu(obj) {
		obj.style.backgroundColor='#f6f9ff';
		obj.style.color='';
		obj.style.cursor='hand';
	}
	
	function outMenu(obj) {
		obj.style.backgroundColor='';
		obj.style.color='';
		obj.style.cursor='auto';
	}
	
	function openPage(page) {
		window.open(page,"hazmatwin","width=970,height=700,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,copyhistory=no");
	}