| To install this script, follow these simple steps:
1. Cut and paste this script into the HEAD of your document:
<!-- Begin Pop Up Window -->
<script language="JavaScript">
<!--
/* Author William Flanery
Email flaneryw@gte.net
Homepage
http://www.geocities.com/TheTropics/Shores/1201/german.html
This script is free to use as long as this header remains intact */
//To adjust the amount of time that the window is open...
//change the value of the timeout (it is set to 5000 here)
//a higher number keeps the window open longer
//
setup='toolbar=no,location=no,directories=no,status=no,menubar=no,width=200,height=150'
setup += 'scrollbars=no,resizable=no'
pop = window.open ("","pop",setup)
pop.document.write('<head>');
pop.document.write('<Title>');
pop.document.write('Pop Up Ad');
pop.document.write('</Title>');
pop.document.write('<script language="javascript">');
pop.document.write('setTimeout(');
pop.document.write('"self.close()');
pop.document.write(';",5000)');
pop.document.write('</');
pop.document.write('script>');
pop.document.write('</head>');
pop.document.write('<body bgcolor=#FFFF80>');
pop.document.write('<center><h3>בבקשה המתן לטעינת הדף</h3></center>');
pop.document.write('<center><h6>(החלון סוגר את עצמו)</h6></center>');
pop.document.write('</body>');
-->
</script>
|