<!-- Begin scroll function

var Message="Welcome to the Lunch Bunch Web Site, take a break and join us for lunch on Friday!";
var place=1;
function scrollIn() {
window.status=Message.substring(0, place);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollOut()",300);
} else {
place++;
window.setTimeout("scrollIn()",50);
   }
}
function scrollOut() {
window.status=Message.substring(place, Message.length);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollIn()", 100);
} else {
place++;
window.setTimeout("scrollOut()", 50);
   }
}
// End scroll function

<!-- Begin bookmark script
function addbookmark() {
bookmarkurl="http://www.w0NI.com/"
bookmarktitle="Official Lunch Bunch Web Site - W0NI"
	if (document.all)
	window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
//  End bookmark script -->