/* Datei quicklink.js
   Autor: Katrin Röder (nach einer Vorlage aus SELFHTML)
          roederk@mathematik.uni-marburg.de
*/

function Go(x) {
 if(x == "nothing") {
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
   return;
 }

 else {
   window.location.href = x;
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
 }
}

function google(){
   if(document.google.ort[1].checked == true){
      document.forms["google"].q.value = document.forms["google"].q.value + " site:www.mathematik.uni-marburg.de";
   }
   var q = "?q="+document.forms["google"].q.value+"&hl=de";
   q = encodeURI(q);
   window.location.href = "http://www.google.de/search"+q;
}

