
// url with x: opens in new window
// url with y: opens in top frame (a change since version 3.0+)
// url standard: opens in same frame

function jumping(url) {
 if(url == "nothing") { document.forms[0].reset(); document.forms[0].elements[0].blur(); return; }
 if(url == "bookmark") { bookmark_this_page(); return; }
 if(url == "email") { location.href = 'mailto:?subject=Hallo%20-%20habe%20ein%20interessantes%20Bild%20gefunden&amp;body=' + window.location.href;  return; }
 if(url == "greatpic") { Bild_ganz_gross_in_neuem_Fenster(); return; }
 if(url == "fototransfer") { fototransfer(); return; }
 if(url == "opedo") { opedo(); return; }
 var xyz = url.slice(0,5);
 if (xyz == "xhttp") {var url2 = url.replace("xhttp","http"); window.open(url2,"_blank");  return; }
 if (xyz == "yhttp") {var url2 = url.replace("yhttp","http"); top.location.href = url2 ;  return; }
 location.href = url ; 
}

function bookmark_this_page() { 
 if (document.all) {  window.external.AddFavorite(location.href, document.title); }
 else { alert('Netscape users, Please use CTRL + D   /   Bitte benutzen Sie die Tasten Strg + D wenn Sie mit Netscape unterwegs sind !'); }
}

function make_drop_down_menue() {
 document.write('<form name="formpics">') ;
 document.write('<select name="menupics" onChange="jumping(this.form.menupics.options[this.form.menupics.options.selectedIndex].value)"  valign="middle">') ;
 document.write('<option value="http://www.loewensupporters.de/fotos/brd-schottland/"> Bilder</option>') ;
 document.write('<option value="http://www.loewensupporters.de/fotos/brd-schottland/bilder.html">Bilder</option> ') ;
 document.write('</select></form>') ;
}

