
/*********************************************************************
swapContent() changes the Search Engine
*********************************************************************/


function searchEngine(form){
var URL = document.Search.Engine.options[document.Search.Engine.selectedIndex].value;
window.location.href = URL;
}
/*********************************************************************
popupWindow
*********************************************************************/

function openWindow(winsource,width,height) {
var scroll = false;

  if(scroll) {
    scroll = ", scrollbars";
    }
  NeuesFenster = window.open(winsource,"fenster","width="+width+", left=100, top=100, height="+height+", locationbar=no, menubar=no,statusbar=no,toolbar=no,resizable=no"+scroll);
}