This little Script makes it possible to incorporate little popups into your webpages.

 Click on this link to see an example: EXAMPLE.

 Click on this link to see an example: EXAMPLE.

 Click on this link to see an example: EXAMPLE.

 You can make as many popups as you want by adding words to the array:

 word=new Array();
word[0]=".......";
word[1]=".......";
word[2]=".......";
.....

 You can vary the time that a popup appears/disappears by changing the last number:
clearID=defwin.setTimeout("self.close()",10000)
The size of the popups can be changed by changing the width and height properties of the function: defwin=window.open()

You can cut and paste the below script:

<html>

<head>
<title>your title </title>

<script Language="JavaScript">
<!-- //
word=new Array();
word[0]="<i><b>Example Script:</b></i>:<br> In this little window you can put additional information on subjects. Very handy!";
function popdef(n) {
     defwin=window.open("","Glossary","Toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=250,height=200")
defwin.document.open()
defwin.document.write("<html><head><title>Glossary</title></head><body>")
defwin.document.write(word[n])
defwin.document.write("</body></html>")
defwin.document.close()
clearID=defwin.setTimeout("self.close()",5000)
}
//  -->
</script>
</head>
Click on this link to see an example: <a href="javascript:void(0)" onClick="popdef(0);return false">EXAMPLE</a>.<p>
</body>
</html>