<!--
        arrow_on = new Image(1,1);
        arrow_on.src = "http://www.sgoinc.com/franserv_alpha/graphics/nav/arrow_down.gif";

        arrow_off = new Image(1,1);
        arrow_off.src = "http://www.sgoinc.com/franserv_alpha/graphics/nav/arrow_right.gif";
        
        var dropped = false;

        var menu_array = new Array("mainmenu","designshare","parts","newsletters","discussion","advisory","software","fun","photos","feedback");
        
        function dropIt(tahw) {
                what  = eval(tahw + "_menu");
                where = eval(tahw + "_arrow");
                if (what.style.display == "none") {
                        what.style.display = "";
                        where.src = arrow_on.src;
                } else {
                        what.style.display = "none";
                        where.src = arrow_off.src;
                }
        }

        function dropAll() {
                if(dropped) {
                        for(x=0; x < menu_array.length;x++) {
                                what  = eval(menu_array[x] + "_menu");
                                where = eval(menu_array[x] + "_arrow");
                                what.style.display = "none";
                                where.src = arrow_off.src;
                                dropped = false;
                                document.cookie="menu_state=not_dropped; expires=Saturday, 20-Nov-2010 08:00:00 GMT; path=/";
                        }
                }
                else {
                        for(x=0; x < menu_array.length;x++) {
                                what  = eval(menu_array[x] + "_menu");
                                where = eval(menu_array[x] + "_arrow");
                                what.style.display = "";
                                where.src = arrow_on.src;
                                dropped = true;
                                document.cookie="menu_state=dropped; expires=Saturday, 20-Nov-2010 08:00:00 GMT; path=/";                               
                        }
                }
        }

        function auto_drop() {
                re = /menu_state=dropped/;
                if (re.test(document.cookie)) {
                        dropAll();
                        auto_expand.checked = true;
                }
                        
        }
        
//-->

<!-- 
function PopUp()
  {}
function validate() 
  {}
//-->

