function highlight(e,msg){
	e.style.cursor = 'pointer';
	if(document.all){
		if(e.id=="hi") {
			if(e.className!="MENU_Hoofditem_C") {
				e.className = "MENU_Hoofditem_O";
			}
		}
		if(e.id=="s1") {
			if(e.className!="MENU_Subitem_C") {
				e.className = "MENU_Subitem_O";
			}
		}
		if(e.id=="s2") {
			if(e.className!="MENU_SubitemSub_C") {
				e.className = "MENU_SubitemSub_O";
			}
		}
	}
	if(msg == null)msg = ""
	window.status=msg
}

function unhighlight(e,orig){
	if(document.all){
		if(e.id=="hi") {
			if(e.className!="MENU_Hoofditem_C") {
				e.className = "MENU_Hoofditem_N";
			}
		}
		if(e.id=="s1") {
			if(e.className!="MENU_Subitem_C") {
				e.className = "MENU_Subitem_N";
			}
		}
		if(e.id=="s2") {
			if(e.className!="MENU_SubitemSub_C") {
				e.className = "MENU_SubitemSub_N";
			}
		}
	}
	window.status=""
}

function goURL(link,target){
	if (link != 'nourl' && link != '') {
		e = eval("parent."+target)
		e.location.href = link;
	}
}

function goLINK(link,target){
	if (link != 'nourl') {
		if(target=="new") {
			window.open(link);
		} else {
			e = eval(target);
			e.location.href = link;
		}
	}
}

function clickst(e) {
	if(e.id=="hi") {
		for(i=0; i < document.all('hi').length; i++) {
			if(document.all('hi')(i).className == 'MENU_Hoofditem_C'){
				document.all('hi')(i).className = "MENU_Hoofditem_N";
			}
		}  
		e.className = "MENU_Hoofditem_C";
	}
	if(e.id=="s1") {
		for(i=0; i < document.all('hi').length; i++) {
			if(document.all('hi')(i).className == 'MENU_Hoofditem_C'){
				document.all('hi')(i).className = "MENU_Hoofditem_N";
			}
		} 
		for(i=0; i < document.all('s1').length; i++) {
			if(document.all('s1')(i).className == 'MENU_Subitem_C'){
				document.all('s1')(i).className = "MENU_Subitem_N";
			}
		}  
		e.className = "MENU_Subitem_C";
	}
	if(e.id=="s2") {
		for(i=0; i < document.all('hi').length; i++) {
			if(document.all('hi')(i).className == 'MENU_Hoofditem_C'){
				document.all('hi')(i).className = "MENU_Hoofditem_N";
			}
		} 
		for(i=0; i < document.all('s1').length; i++) {
			if(document.all('s1')(i).className == 'MENU_Subitem_C'){
				document.all('s1')(i).className = "MENU_Subitem_N";
			}
		} 
		for(i=0; i < document.all('s2').length; i++) {
			if(document.all('s2')(i).className == 'MENU_SubitemSub_C'){
				document.all('s2')(i).className = "MENU_SubitemSub_N";
			}
		} 
		e.className = "MENU_SubitemSub_C";
	}
}


