<!-- 

function SelectIt(){
        if (document.Links.Select.options[document.Links.Select.selectedIndex].value != "none"){ 
        location = document.Links.Select.options[document.Links.Select.selectedIndex].value}        
}

function goThere(active_selectbox) {
        var index = eval('document.links.menu_form.' + active_selectbox + '.selectedIndex');
        var destination = eval('document.menu_form.' + active_selectbox + '.options[index].value');
        if (destination != "") {  
                window.location.href = destination;
        }
}

function go2(options,formName,fieldName) {
	var num = options;
	
	for (var i=0;i<num;i++) {
	
	var isChecked = eval("document." + formName + "." + fieldName + "[i].checked");
	var goHere = eval("document." + formName + "." + fieldName + "[i].value");

		if (isChecked) {
			location = goHere;
		}
	}
}

function go2select(formName,fieldName) {
	var goHere = eval("document." + formName + "." + fieldName + ".options[document." + formName + "." + fieldName + ".selectedIndex].value");

    if (goHere != "none") { 
	    location = goHere;                                 
    }
}

function go2window(formName,fieldName) {
	var goHere = eval("document." + formName + "." + fieldName + ".options[document." + formName + "." + fieldName + ".selectedIndex].value");

    if (goHere != "none") { 
	    window.open(goHere); 
    }
}


function goWindow(options,formName,fieldName) {
	var num = options;
	
	for (var i=0;i<num;i++) {
	
	var isChecked = eval("document." + formName + "." + fieldName + "[i].checked");
	var goHere = eval("document." + formName + "." + fieldName + "[i].value");

		if (isChecked) {
			winwin = goHere;
			window.open(winwin);
		}
	}
}

// --> 

