// Array of possible valuesvar value_array = Array("asphalt","beer","berries","blood","butter","candle_wax","candy","catsup","chalk","chewing_gum","chocolate","coffee","cooking_oil","dyes","excrement","foundation_makeup","fruit_juice","furniture_polish","grease_food","grease_auto","glue_white","glue_hobby","ice_cream","ink_ball_point_pen","ink_marking_pen","artificially_colored_fruit_drinks","kool_aid","lemonade","lipstick","mascara","mayonnaise","mercurochrome","methiolate","milk","mixed_drinks","mud","mustard","nail_polish","paint_latex","paint_oil","pet_food","paper_mache","shoe_polish","shortening","soft_drink","tar","tea","urine_dry","urine_fresh","vomit","wine_red","wine_white","unknown");// Get value off current URLthe_url = window.location.href;the_index = the_url.indexOf("?");if (the_index!=-1) {	// Get value	the_value = the_url.substr((the_index+1), (the_url.length-1));		// Get index of value	selected_index = searchArray(the_value,value_array);		// Set selected index	document.care_form.url.selectedIndex = selected_index;}// Function to search arrayfunction searchArray(value,array) {	return_index = -1;	for (a=0; a<array.length; a++) {		if (array[a]==value) {			return_index = a;			}	}	return return_index;}
