<!--
function initializeForm() {
        var myindex = Get_Cookie('industryindex');
        document.profileForm.industry.selectedIndex = myindex;
}

function saveindustry(form) {
        var today = new Date();
        var expires = new Date(today.getTime() + (56 * 86400000));
        var industryindex=form.industry.selectedIndex;
        var industryname=form.industry.options[industryindex].text;
        var industryvalue=form.industry.options[industryindex].value;
        Set_Cookie('industryvalue', industryvalue, expires);
        Set_Cookie('industryindex', industryindex, expires);
        Set_Cookie('industryname', industryname, expires);
}

function go_industry(doc) {
         var industryindex=document.profileForm.industry.selectedIndex
         var industryvalue=document.profileForm.industry.options[industryindex].value;
         // doc var currently not used
         switch (parseInt(industryvalue)) {
         case 1 :
                  var url = "http://www.managemore.com/industry/index.htm"
                  break
         case 2 :
                  var url = "http://www.managemore.com/cellular/index.htm"
                  break
         case 3 :
                  var url = "http://www.managemore.com/pager/index.htm"
                  break
         default :
                  var url = "http://www.managemore.com/industry/index.htm"
                  break
         }
         window.location.href = url
}
//  -->


