<!-- Begin
function popupWin() {
text =  "<html>\n<head>\n<META HTTP-EQUIV='expires' CONTENT='0'>\n<title>Visit St. Ann's</title>\n</head>\n<body bgcolor='#006633' link='#FFFF99' vlink='#FFFF99' alink='#FFFF99' topmargin='0'>\n";
text += "<center>\n";
text += "<font face='arial,helvetica,san-serif' color='#FFFF99'><font size='+2'>WIN a Door County Condo</font><br>";
text += "<font size='-1'>and benefit St. Ann Center for Intergenerational Care!</font>"
text += "<a href='http://www.stanncenter.org' target='_blank'><img src='images/StAnnLogo1.jpg' border='0'><p><img src='images/st_ann_contest.jpg' border='0'></a></p>"
text += "<p> <font size='-1'>Tickets ($50 ea. or 3 for $100) support community service programs at St. Ann Center in Milwaukee.</p>"
text += "<p><a href='http://www.stanncenter.org' target='_blank'>More Information</a></p></font>"
text += "<font size='-1'>This window closes automatically in 10 seconds</font></font>"
text += "</center>\n</body>\n</html>\n";
setTimeout('windowProp(text)', 2000); 		// delay 2 seconds before opening
}
function windowProp(text) {
newWindow = window.open('','newWin','width=350,height=500');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 12000);	// delay 12 seconds before closing
}
function closeWin(newWindow) {
newWindow.close();				// close small window and depart
}
//  End -->
