<!-- Original:  Rick Johnson (frj11@ev1.net) -->
<!-- Web Site:  http://rickjohnson.tripod.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function popupWin() {
text =  "<html>\n<head>\n<title>Pop Window</title>\n<body  background='http://www.springfieldchildcare.org.uk/backgrounds/1332244.jpg'>\n";
text += "<center>\n<br>";
text += "<font face='Arial,Helvetica,san-serif'><a href='mailto:lynn@springfieldchildcare.org.uk?subject=RE:Vacancies' target='_blank'><h2>Vacancies Available</h2></a><br><center><font size='+1'>This pop-up window will close in 10 seconds</font></center></font>";
text += "</center>\n</body>\n</html>\n";
setTimeout('windowProp(text)', 1000); // delay 1 seconds before opening
}
function windowProp(text) {
newWindow = window.open('','newWin','width=300,height=150');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 10000); // delay 10 seconds before closing
}
function closeWin(newWindow) {
newWindow.close(); // close small window and depart
}
//  End -->