// Statusleistentext
function pollMessage()
{
window.status = "Die FISCHERKATE an den Peitzer Teichen * Hüttenwerk 1 * 03185 Peitz * Herzlich willkommen...";
setTimeout( "pollMessage()", "1" );
}
pollMessage();





// Layer-Funktion f. Browser
function MM_reloadPage(init){
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);


//Fenster maximieren
function fensterMax() {
w = screen.width
h = screen.height - 30
window.resizeTo(w,h)
}


// Besucher kommt nicht von index.html
function S_Laden() {
if(self.location.search.length > 0) {
var lng = self.location.search.length;
var n_url = self.location.search.substring(1,lng);
if (document.images)
windows.location.replace(n_url);
else
windows.location.href = (n_url); 
}
}

function i_test(){
var Z_HTML = "../index.html";
if (!top.S_Geladen){
if(document.images)
top.location.replace(Z_HTML); 
else 
top.location.href = Z_HTML ;
}
}
