var expandedlink = ''
var expandedimg = ''
function expand(linkid,imgid) {
	if(expandedlink!=linkid && expandedlink!='') {
		expand(expandedlink,expandedimg);
	}
	expandedlink = linkid;
	expandedimg = imgid;
	var link = getEle(linkid);
	var img = getEle(imgid);
	if(link.style.display == 'none') {
		link.style.display = 'block';
		img.src = getI() + '/global/gfx/arrow_up.gif'
	} else {
		link.style.display = 'none';
		expandedlink = '';
		expandedimg = '';
		img.src = getI() + '/global/gfx/arrow_down.gif'
	}
}
