// JavaScript Document

//window.alert("Diese Datei: " + document.URL);


var URL = document.URL;
var res = URL.search(/\?/);

    //window.alert(res);
if(res != -1 ){
  var splitURL = URL.split("/?");
  var getVars = splitURL[1].split("=");
  
  if(getVars[1] == "qt"){
    //window.alert(getVars[1]);
    //var asdf = document.ContactForm["Country"].value;
    //window.alert(asdf);
    document.ContactForm.RequestedService[0].checked = true;
  }
}
  
