function displayStory(index) {

    var i, hot;

    for (i = 1; i < 10; i++) {
        hot = document.getElementById("cont_involvement_hot_" + i);
        if (hot && hot.style) {
            hot.style.display = "none";
        }
    }

    hot = document.getElementById("cont_involvement_hot_" + index);
    if (hot && hot.style) {
        hot.style.display = "block";
    }
}

function openJumpMenu(targ, selObj, restore) {
	var url = selObj.options[selObj.selectedIndex].value;
	if (url) {
		window.open(url, targ);	
		if (restore) {
			selObj.selectedIndex = 0
		};
	}
}

