function popupWin() {text =  "<html>\n<head>\n<title>Shop Here.</title>\n<body bgcolor=white>\n";text += "\n<center><img src='http://www.learningvillage.com/images/cdromstorelogo.jpg' width=100 height=38><br><br>";text += "<b>\n<nobr>Now You Can Order.</nobr>\n<br>";text += "Online<br>";text += "Or<br>";text += "416-778-4689\n<br>";text += "\n<a href='http://www.learningvillage.com/html/aboutordering.html' target='_blank'>More Info</a>";text += "</center>\n</body>\n</html>\n";setTimeout('windowProp(text)', 2000); 		// delay 2 seconds before opening}function windowProp(text) {newWindow = window.open('','newWin','width=170,height=200');newWindow.document.write(text);setTimeout('closeWin(newWindow)', 10000);	// delay 10 seconds before closing}function closeWin(newWindow) {newWindow.close();				// close small window and depart}