<!-- Original:  Rick Johnson (frj11@ev1.net) -->
<!-- Web Site:  http://rickjohnson.tripod.com -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

function popupWin() {

text =  "<html>\n<head>\n<title>WICHTIG !</title>\n<body>\n";
text += "\n</body>\n</html>\n";
setTimeout('windowProp(text)', 3000); 		// delay 3 seconds before opening
}
function windowProp(text) {
newWindow = window.open('popup/sendung.htm','newWin','width=295,height=195');
setTimeout('closeWin(newWindow)', 15000);	// delay 15 seconds before closing
}
function closeWin(newWindow) {
newWindow.close();				// close small window and depart
}