// JavaScript Document

function clearDefault(key) {
	if (key.defaultValue==key.value) key.value = ""
	// If Dynamic Style is supported, clear the style
}

function gotoCat(form) {
     var url = form.cats.options[form.cats.selectedIndex].value;
     if (url != '') location.href = url;
     return false;
}
