/* functions for use on the home page
*/

/*addDOI - adds the passed doi prefix to the field on the form
prior to submission in order to reduce the amount the user
has to type */

function addDOI(form,prefix) {
	form.doi.value = prefix+form.doi.value;
	return true;
}
