// Script for validating inputs.
function validate() {
	//alert(document.getElementById('inputform').ontologyLabel.value);
	if ((document.getElementById('form1').webURI.value == "") ) {
		alert("Mandatory fields - Please choose a URI!");
		return false;
		}
	return true;
	}
