//<script>
function leftNavButtonMouseMove(d) {
	if (d.className.indexOf('leftNavButtonOver') == -1) {
		d.className += ' leftNavButtonOver';
		
		try {
			setHelpText('Go to ' + d.innerHTML);
		} catch (e) {}
	
		var h = d.getAttribute('href');
		if (h == null) return;
		if (h == '') return;
		
		var t = d.getAttribute('target');
		if (t == '') t = null;
		if (t != null && t != '_top') h = 'Open ' + h + ' in a new window';
		
		try {
			// firefox won't allow this
			window.status = h;
		} catch (e) {}
	}
}
	
function leftNavButtonMouseOut(d) {
	d.className = d.className.replace(/ leftNavButtonOver/g, '');
	
	try {
		setHelpText();
	} catch (e) {}
	
	try {
		// firefox won't allow this
		window.status = '';
	} catch (e) {}
}
	
function leftNavButtonClick(d) {
	var h = d.getAttribute('href');
	if (h == null) return;
	if (h == '') return;
	
	var t = d.getAttribute('target');
	if (t == '') t = null;
	
	var f = d.getAttribute('features');
	if (f == '') f = null;
	
	//alert(h);
	if (t == null) document.location.href = h;
	else if (t == '_blank' || t == '_new') window.open(h, '');
	else if (f == null) window.open(h, t);
	else window.open(h, t, f);
}

function OpenPopup(u, n) {
	window.open(u,n,"scrollbars=yes,location=no,toolbar=no,menubar=no,resizable=yes");
}
