<script LANGUAGE="Javascript">
var popup_window = null;
function popup(status, url, width, height)
{
var taskl = 25
var rand = 5
var left = (screen.availWidth - width - rand) / 2;
var top = (screen.availHeight - height - taskl) / 2;
if(status != 0)
{
if(popup != null)
popup.focus();
else
{
var popup = open(url, "Popup", "left="+left+", top="+top+", width="+width+",height="+height+"");
popup_window = popup;
}
}
else
{
if(popup_window != null)
popup_window.close();
}
}
</script>
<p align="center">Wenn Ihr mit der Maus über diesen <a HREF="test2.htm"
onMouseover="popup(1, 'test.htm', 250, 100)" onMouseout="popup(0)">Link</a> geht, öffnet sich ein
Popup-Fenster</p> |