<!-- Begin
function popupWin() {
text =  "<html>\n<head>\n<title>Promotion</title>\n<body>\n";
text += "<center>\n<br>";
text += "<a href=promotion.php target=_blank><img src=images/popup.jpg /></a>";
text += "</center>\n</body>\n</html>\n";
setTimeout('windowProp(text)', 2000); 		// delay 3 seconds before opening
}
function windowProp(text) {
newWindow = window.open('','newWin','width=520,height=600');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 10000);	// delay 10 seconds before closing
}
function closeWin(newWindow) {
newWindow.close();				// close small window and depart
}
//  End -->