
function MM_jumpMenu(selObj) {
	if (!selObj.options[selObj.selectedIndex].value) return false;
/*	window.location="index2.php?nodeId="+selObj.options[selObj.selectedIndex].value; */
	window.location=selObj.options[selObj.selectedIndex].value;
}

function changeText(text) {
    if (document.layers) {
        document.layers.dynamicText.document.write(text);
        document.layers.dynamicText.document.close();
    } else if (document.all) {
        dynamicText.innerHTML=text;
    }
}