// JavaScript Document

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);


// Hintergrundwechsel
function swapbgcolor(target,col) {
        document.getElementById(target).bgColor = col;
}
// Flash contetn
function writeHTML(html){
	document.write(html);
}
// Pop Up Fenster

function window2(link,fenster,wi,he,scrollbar,resizable,location) {

wincom = window.open(link ,fenster,"toolbar=1,location="+location+",directories=0,status=1,menubar=0,scrollbars="+scrollbar+",resizable="+resizable+",width="+wi+",height="+he);
wincom.focus() ;
}