1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
|
<html>
<head>
<script> function openWin() {
myWindow=window.open('','','width=300,height=400,scrollbars=1');
myWindow.document.write("<p><strong><u>Geburtstage im Februar 2013</u></strong><br> User 1
<br>
User 2
<br>
User 3</p>"); myWindow.focus(); } </script>
</head>
<body>
<input type="button" value="Geburtstage im Februar 2013" onclick="openWin()" />
</body>
</html> |