function jumpToURL()
     {
     var strVar="";
     
     strVar += "http:\/\/maps.google.com\/maps?f=d&source=s_d"
     
     
     
     // ******** Get source address
     strVar += "&saddr=";
     
     strVar +=  document.getElementById('zipcode').value;
     
     
     
     // ******** Get stop intermediate address
     strVar += "&daddr="
     
     strVar +=  document.getElementById('stopover').value;
    
     
     // ******** Get final destination address     
     strVar += "&mrad=318+E+Franklin+St,+Appleton,+WI+54911"
     
     
     
     
     
     strVar += "&hl=en";
     
     
     
     
     
     //strVar += "&daddr=318+E+Franklin+St,+Appleton,+WI+54911&hl=en&t=h&layer=t";
     
     
     window.location = strVar;
     }


function returnHome()
     {
     var strVar="";
     
     strVar += "http:\/\/maps.google.com\/maps?f=d&source=s_d"
     
     
     
     // ******** Get source address
     strVar += "&mrad=";
     
     strVar +=  document.getElementById('zipcode').value;
     
     
     
     // ******** Get stop intermediate address
     strVar += "&daddr="
     
     strVar +=  document.getElementById('stopover').value;
    
     
     // ******** Get final destination address     
     strVar += "&saddr=318+E+Franklin+St,+Appleton,+WI+54911"
     
     
     
     
     
     strVar += "&hl=en";
     
     
     
     
     
     //strVar += "&daddr=318+E+Franklin+St,+Appleton,+WI+54911&hl=en&t=h&layer=t";
     
     
     window.location = strVar;
     }



