var fDesc=new Array(); fDesc[0] = "The Manchester Pizza Finder is a simple demonstration application, which uses the Pizza Ontology that is developed in the Protégé-OWL tutorial.

The Pizza Finder uses the Pizza Ontology, and a remote Description Logic (DL) reasoner to dynamically generate pizza toppings and pizza topping categories. The user can include toppings that they would like on their pizza and exclude any toppings that they do not want on their pizza. The description logic reasoner is used to determine if the choices that have been made contradict each other - for example, choosing to include Jalapeno Pepper topping, but choosing to exclude all hot toppings - the choices are automatically adjusted to modify any decisions that could potentially lead to contradictions and inconsistent results."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }