function SecretHandshake()
{
/*
** Dynamically fill in a "magic cookie" into a hidden field in the Add Guest
** form of the guestbook.  Hopefully this will prevent any kind of automated 
** form submission.  The alternative (too awful to contemplate) is that the 
** pondscum who keep misusing the guestbook are actually sad and pathetic 
** enough to be doing it manually, in which case I will need to revisit this
*/
	document.forms[0].elements['submitbuttonname'].value="dothebusiness";
	document.forms[0].elements['magiccookie'].value="yumyumyum";
	return(1);
}


