/*	==================================
	Collapsable Menus Code
	Copyright (c) 2005 Harold J. Chow.
	All rights reserved.
	==================================	*/

var expstat = new Array();

function gO(id) {
//	if (document.all) {
//		return document.all[id];
//	}
//	else {
		return document.getElementById(id);
//	}
}

function co(s,i,x) {
	var c=s.innerHTML;
	var d=gO(i);
	if (c.indexOf("Expand")!=-1) {
		s.innerHTML='<img src="/i/arw_dn.gif" alt="Collapse" width="11" height="11" border="0">';
		d.style.display='block';
		expstat[x]='Collapse';
//		d.className = d.className.replace("list_col","list_exp");
	}
	else {
		s.innerHTML='<img src="/i/arw_rt.gif" alt="Expand" width="11" height="11" border="0">';
		d.style.display='none';
		expstat[x]='Expand';
//		d.className = d.className.replace("list_exp","list_col");
	}
}
