<SCRIPT LANGUAGE="JavaScript" type="text/JavaScript">
<!-- Begin
function popupWin() {
text =  "<html>\n<head>\n<title>January Promotion</title>\n<body bgcolor='#82302F'>\n";
text += "<table width='100%' border='0' cellspacing='0' cellpadding='0'>";
text += "<tr><td><img src='images/january_header.gif' width='250' height='142'></td></tr>";
text += "</table>\n</body>\n</html>\n";
setTimeout('windowProp(text)', 1000); 		// delay 3 seconds before opening
}
function windowProp(text) {
newWindow = window.open('','newWin','width=280,height=170');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 5000);	// delay 5 seconds before closing
}
function closeWin(newWindow) {
newWindow.close();				// close small window and depart
}
//  End -->
</script>