// JavaScript Document

function menu_swap(id, obj, message){
	document.getElementById(id).style.color = "yellow";
	obj.style.cursor = "pointer";
	window.status = message;
}

function menu_swap_back(id, obj, message){
	document.getElementById(id).style.color = "#EEEEEE";
	window.status = message;
}

function menu_anchor(link, e){
	if (navigator.appName.indexOf('Microsoft') != -1)
		browser = 'IE';
	else if (navigator.appName.indexOf('Netscape') != -1)
		browser = 'Netscape';
	else browser = 'IE';
	if(browser =='IE'){
		if(event.button == 1) window.location = homeURL + link;
		if(event.button == 0) window.location = homeURL + link;
	}
	else if(browser =='Netscape'){
		if(e.button == 0) window.location = homeURL + link;
	}
	else window.location = homeURL + link;
		
}