/*implements combo box-links to pages -url locations*/
function SelectLink(){
     if (document.Links.max.options[document.Links.max.selectedIndex].value != "#"){ 
             var url = document.Links.max.options[document.Links.max.selectedIndex].value;
             window.location = "http://www.orchardhillsathleticclub.com/" + url;
       }      
}
