// Normales Popup für Sitemap
function sitemap(url){
popup =window.open(url+"/sitemap.cfm","sitemap","height=500,width=600,scrollbars=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0");
}
// Popup schliessen und Hauptfenster neu laden
function ladeseite(url){
parent.window.opener.focus();
parent.window.focus();
parent.window.opener.location.href =url;
}
// Popup für Suche
function search()
{
x ="http://public2.infokom-gt.de/cgi-bin/hse/hse3.33_win32/cgi-bin/HomepageSearchEngine.exe?title=on;text=on;cat=1;lang=de;conf=3;hits=20;terms=" + document.searchform.terms.value;
 window.open(x,"search","height=400,width=600,scrollbars=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0");
} 

