JavaScript

System Info
Clocks
Equalizer
Text in the Form
Background Color
Goodbye Pop-up
MultiLink
Window's Size
MultiLink-II

DHTML


Books

Russian | Main Page


Useful links:







Goodbye Pop-up | Description

If you want to use any of this examples, please put a link to our site.
Here you can find HTML-code for such link.

<html>
<head>
<title>www.redmount.com - JavaScript - Goodbye Pop-up</title>
<script language=javascript>
<!--
  function newWindow()
  {
  nw=window.open("","Bye","directories=0,width=400,height=80,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0");

    nw.document.open();

    nw.document.write("<html><title>Bye-bye!</title><body topmargin=0 bgcolor=#003366 text=white><center><br><font size=10 color=white><b>Bye-bye! </b></font></center></body></html>");
  }
//-->
</script>
</head>

<body onUnload=newWindow() leftmargin=30 marginwidth=30>

</body>
</html>