//statuszeile
      function pollMessage()
      {
        window.status = "Nicoles private Erotikseite..!!";
        setTimeout( "pollMessage()", "1" );
      }
      pollMessage();


//Impressum

function popwin1(url,w,h,s,r)
{
x=screen.width/2;
x=x-w/2;
y=screen.height/2;
y=y-h/2;
popUp=window.open(url,'win','width='+ w +',height='+ h +',left=' + x +',top='+ y +',directories=0,status=0,scrollbars='+s +',resizable='+ r + ',menubar=0,location=0,toolbar=0')
}

//aktuelles Datum
<!-- Begin
var months=new Array(13);
months[1]="Januar";
months[2]="Februar";
months[3]="M&auml;rz";
months[4]="April";
months[5]="Mai";
months[6]="Juni";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="Oktober";
months[11]="November";
months[12]="Dezember";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
// End -->

<!-- Beginning of JavaScript -

// CREDITS:
// Simple flying pop-up-window by Urs Dudli and Peter Gehrig 
// Copyright (c) 2000 Peter Gehrig and Urs Dudli. All rights reserved.
// Permission given to use the script provided that this notice remains as is.
// Additional scripts can be found at http://www.24fun.ch.
// info@24fun.ch
// 2/8/2000

// IMPORTANT: 
// If you add this script to a script-library or script-archive 
// you have to add a link to http://www.24fun.ch on the webpage 
// where this script Script will be running.

//  **********************************************************************************
//  **********************************************************************************
// INSTRUCTIONS: 
// Configure the variables below

// The name of the pop-up-window. Do not change it
var popwindow

// The height of the pop-up-window (pixels)
var popwindowwidth=320

// The width of the pop-up-window (pixels)
var popwindowheight=480

// Distance to the top margin of the big window
var popwindowtop=20

// The URL of the HTML-file that contains the content of the pop-up-window
var popwindowURL="fly.html"

// Standstill-time (seconds)
var waitingtime=500

// Configure ths speed of the pop-up-window
var pause=20
var step=40

// Do not change this variable
var popwindowleft=-popwindowwidth-50

// Do not change this variable
var marginright

// Do not change this variable
var pagecenter

// Do not change this variable
var timer

waitingtime= waitingtime*1000

function showWindow() {
	popwindow = window.open(popwindowURL, "popwindow", "toolbar=no,width="+popwindowwidth+",height="+popwindowheight+",top="+popwindowtop+",left="+(-popwindowwidth)+"");
	if (document.all) {
		marginright = screen.width+50
	}
	if (document.layers) {
		marginright = screen.width+50
	}
	pagecenter=Math.floor(marginright/2)-Math.floor(popwindowwidth/2)
	movewindow()
}

function movewindow() {
		if (popwindowleft<=pagecenter) {
			popwindow.moveTo(popwindowleft,popwindowtop)
			popwindowleft+=step
			timer= setTimeout("movewindow()",pause)
		}
		else {
			clearTimeout(timer)
			timer= setTimeout("movewindow2()",waitingtime)
		}
}

function movewindow2() {
		if (popwindowleft<=marginright) {
			popwindow.moveTo(popwindowleft,popwindowtop)
			popwindowleft+=step
			timer= setTimeout("movewindow2()",pause)
		}
		else {
			clearTimeout(timer)
			popwindow.close()
		}
}

// -->