<!--

    function getProfile_Click(form) {

        var item;

        // Get the value of the item that's selected in the Morning list

        item = form.morning.selectedIndex;

        var rating = eval(form.morning.options[item].value);


        // Get the value of the item that's selected in the Meal list

        item = form.meal.selectedIndex;

        rating += eval(form.meal.options[item].value);


        // Get the value of the item that's selected in the Evening list

        item = form.evening.selectedIndex;

        rating += eval(form.evening.options[item].value);


        // Get the value of the item that's selected in the Naps list

        item = form.naps.selectedIndex;

        rating += eval(form.naps.options[item].value);


 // Get the value of the item that's selected in the Place list

        item = form.place.selectedIndex;

        rating += eval(form.place.options[item].value);


 // Get the value of the item that's selected in the Watching list

        item = form.watching.selectedIndex;

        rating += eval(form.watching.options[item].value);

       
// Get the value of the item that's selected in the Yells list

        item = form.yells.selectedIndex;

        rating += eval(form.yells.options[item].value);

 
// Get the value of the item that's selected in the Individuals list

        item = form.individuals.selectedIndex;

        rating += eval(form.individuals.options[item].value);

       
 // Calculate the Feline Profile

        if (rating == 8)

            form.rating.value = "No particular feline attributes; cats tend to ignore you!";

        else if (rating == 9)

            form.rating.value = "Few feline tendencies; you tend to ignore cats!";

        else if (rating == 10)

            form.rating.value = "Not very feline, but you at least notice cats!";

        else if (rating == 11)

            form.rating.value = "Still not very feline, but most cats will acknowledge your presence!";

        else if (rating == 12)

		 form.rating.value = "Much more human than feline, but you do respond to a cat's purr!";

        else if (rating == 13)

            form.rating.value = "Some feline qualities; most cats consider you worthy of further investigation!";

        else if (rating == 14)

            form.rating.value = "Somewhat feline; you relate well to cats!";

        else if (rating == 15)

          	form.rating.value = "You're getting there, and you enjoy living with a cat!";

        else if ((rating == 16) || (rating == 17))

		 form.rating.value = "Many feline tendencies; cats are among your best friends!";

        else if ((rating == 18) || (rating == 19))

            form.rating.value = "Very feline; you probably relate better to cats than to humans!";

        else if ((rating == 20) || (rating == 21))

            form.rating.value = "Definitely feline; we're on the same wavelength!";

        else if ((rating == 22) || (rating == 23)) 

            form.rating.value = "Extremely feline; we could be soulmates!";

        else if (rating  == 24)	

            form.rating.value = "Almost pure feline; other humans probably look at you strangely!";

    }

//-->		