/*
function quickLinkIndustry()
 {

  document.location=document.homePage.industry.options[document.homePage.industry.selectedIndex].value;
 }
function quickLinkFunction()
 {

  document.location=document.homePage.functions.options[document.homePage.functions.selectedIndex].value;
 }
function quickLinkSolution()
 {

  document.location=document.homePage.solution.options[document.homePage.solution.selectedIndex].value;
 }
*/
function quickLink(dropdown)
 {

  document.location=dropdown.options[dropdown.selectedIndex].value;
 }