/*
function placeFooter()
    {
      var body = document.getElementsByTagName("body")[0];
      if (body.offsetHeight)
        { 
          if(window.innerHeight){
                 var footer = document.getElementById("leftMenu");
                 footer.style.height = (window.innerHeight - 150) +"px";
                
          }
           else{
                 var footer = document.getElementById("leftMenu");
                 footer.style.height = (body.offsetHeight - 104) +"px";
                 
           }
        }
     }
     
window.onload = placeFooter;
*/
function dropdown(form,loopbackurl){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = loopbackurl + URL;
}