
function go(where) {
	if (where == '~home') {
		location.href = 'http://www.healsreview.com';
	} else {
		if (where == 'cme') {
			win = window.open('http://www.cruise-plan.net/cme', '_blank');
			return;
		}
		if (where == 'presser') {
			win = window.open('http://www.cruise-plan.net/site/coninuing+education+programs+for+physicians%2C+nurses%2C+dentists+and++attorneys', '_blank');
			return;
		}
		location.href = 'http://www.healsreview.com/' + where + '.html';
	}
}

function hl(el) {
	if (el == null) {
		event.srcElement.style.backgroundColor = '#B0FFE0';
		event.srcElement.style.textDecoration = 'underline';
		return;
	}
	eval('document.all.' + el + '.style.backgroundColor = "#B0FFE0"');
	eval('document.all.' + el + '.style.textDecoration = "underline"');
	eval('document.all.' + el + '.style.border = "2px solid blue"');
//	alert('el=' + el + "\nel.outerHTML=" + eval('document.all.' + el + '.outerHTML'));
}

function unhl(el) {
	if (el == null) {
		event.srcElement.style.backgroundColor = '';
		event.srcElement.style.textDecoration = '';
		return;
	}
	eval('document.all.' + el + '.style.backgroundColor = ""');
	eval('document.all.' + el + '.style.textDecoration = ""');
	eval('document.all.' + el + '.style.border = ""');
	eval('document.all.' + el + '.style.borderColor = ""');
}

function show(el) {
return; // disable this function
	ael = el.split(',');
	for (i in ael) {
		elem = ael[i];
//		eval('document.all.' + elem + '.style.display = "";');
		eval('document.all.' + elem + '.style.backgroundColor = "white"');
		eval('document.all.' + elem + '.style.border = backgroundColor = "white"');
	}
}

function hide(el) {
return; // disable this function
	ael = el.split(',');
	for (i in ael) {
		elem = ael[i];
//		eval('document.all.' + elem + '.style.display = "none";');
		eval('document.all.' + elem + '.style.backgroundColor = ""');
	}
}
