<!--//

function addIEFavorite() {

   if (window.external) {

      external.AddFavorite(location.href, 'Bethlehem Country Club, NH')

      }

   else {

      alert("Your browser doesn't support this feature.\n" +

      "If you are using Netscape Navigator, click Bookmarks\n" +

      "and then Add Bookmark to add this site to your favorites.");

      }

}





<!-->

function disable()	{





var ErrMsg = "Function Disabled";



function disableRightClick(btnClick)

{

if (navigator.appName == "Netscape" && btnClick.which == 3) // check for netscape and right click

{ 

alert(ErrMsg);

return false;

}

else if (navigator.appName =="Microsoft Internet Explorer" && event.button == 2) // for IE and Right Click

{

alert(ErrMsg);

return false;

}

}

document.onmousedown = disableRightClick;

}

//-->





<!-->

 function closeWindow() {

   window.close();

}



// End hiding script from old browsers -->









<!--// 

var blank = "images/trans.gif";

var ErrMsg = "Function Disabled";



topedge = 55;  // location of news box from top of page

leftedge = 665;  // location of news box from left edge

boxheight = 130;  // height of news box

boxwidth = 110;  // width of news box

scrollheight = 130; // total height of all data to be scrolled



function scrollnews(cliptop) {

if (document.layers) {

newsDiv = document.news;

newsDiv.clip.top = cliptop;

newsDiv.clip.bottom = cliptop + boxheight;

newsDiv.clip.left = 0;

newsDiv.clip.right = boxwidth + leftedge;

newsDiv.left = leftedge;

newsDiv.top = topedge - cliptop;

}

else {

newsDiv = news.style;

newsDiv.clip = "rect(" + cliptop + "px " + (boxwidth + leftedge) + "px " + (cliptop + boxheight) + "px 0px)";

newsDiv.pixelLeft = leftedge;

newsDiv.pixelTop = topedge - cliptop;

}

cliptop = (cliptop + 1) % (scrollheight + boxheight);

newsDiv.visibility='visible';

setTimeout("scrollnews(" + cliptop + ")", 50);

}

//  End -->




