var rm_over_hotspot;
rm_over_hotspot="";

function rm_ontarget(hotspot) {
	rm_over_hotspot = hotspot;
	setTimeout("rm_show_article_desc()", 500);
}

function rm_offtarget() {
	rm_over_hotspot = "";
}

function rm_show_article_desc() {
	if (rm_over_hotspot != "") {
		var exestr = "document.getElementById('" + rm_over_hotspot + "').style.display='inline'";
		eval(exestr);
		rm_over_hotspot = "";
	}
}
