// FORWARD
// Forwarding on menue choice
//
// © 2001 by Alexander Böhmer - All rights reserved

function forward (whichItem) {
    var whichDest = whichItem[whichItem.selectedIndex].value;
    if (whichDest == "nothing") {
        whichItem.selectedIndex = 0;
    } else {
        document.location = whichDest; 
    }
} 

