var linkcount;
function checklinks() 
	{
		if (!(linkcount==document.links.length))
			{
				// Something changed the links!
   				// Iterate for an id of _goog
   				for (i=0; i < document.links.length; i++) 
					{
						if (document.links[i].id.substring(0,5)=="_goog") 
							{
								// If we find an id of _goog then do something
								document.location.href="http://www.savannahsoftware.com/Includes/NoGoogle.htm"

							}
					}
   			}
  linkcount = document.links.length;
  setTimeout("checklinks()",500);
}

if (document.getElementById && document.createElement) {
	linkcount=document.links.length;
	setTimeout("checklinks()",500);
}

