var ie = (navigator.userAgent.indexOf('MSIE')!=-1);

function classN(){
  return ie?"className":"class";
}
function go(url){
	window.location=url;
}
function ID(id) {
    return ie?document.all(id):document.getElementById(id);
}

function boxmenu2_switch(l,s){
	var u = l.getElementsByTagName('ul')?l.getElementsByTagName('ul')[0]:null;
	if(u)u.style.display = s;
}
function boxmenu2_click(l){
	var ul = ID('boxmenu2u');
	var ll = ul.getElementsByTagName('li');
	for(var i=0;i<ll.length;i++)boxmenu2_switch(ll[i],'none');
	boxmenu2_switch(l,'block');
	return false;
}
function boxmenu2_lite(e,clr){
	e.style.color = clr;
}