/**
 * Menu 0.8 990602
 * by gary smith, July 1997
 * Copyright (c) 1997-1999 Netscape Communications Corp.
 *
 * Netscape grants you a royalty free license to use or modify this
 * software provided that this copyright notice appears on all copies.
 * This software is provided "AS IS," without a warranty of any kind.
 */

function tryit () {
    var rand1 = Math.round(100 * Math.random());
	var rand2 = Math.round(100 * Math.random());
	var rand3 = Math.round(100 * Math.random());
	var rands = rand1 + rand2 + rand3;
	guest.theNumber.value = rands;
	guest.disNumber.value = rands;
	guest.bstatus.value = rands;
	return (rands);
	
}

function stopit()
{
guest.disNumber.blur()
return(true)
}

function stopit2()
{
flowerr.disNumber.blur()
return(true)
}

function tryit2 () {
	var rand1 = Math.round(100 * Math.random());
	var rand2 = Math.round(100 * Math.random());
	var rand3 = Math.round(100 * Math.random());
	var rands = rand1 + rand2 + rand3;
	flowerr.theNumber.value = rands;
	flowerr.disNumber.value = rands;
	flowerr.bstatus.value = rands;
	return (rands);
	
}