function borrow( refElement ) {
	// Get name of instrument:	
	instName = refElement.parentNode.parentNode.parentNode.getElementsByTagName('div')[0].firstChild.nodeValue;

	// Append instrument name to URL and go to form:
	location.href = "request.php?inst=" + escape( instName );
}