Some people ONLY use the prototype javascript framework for JUST selecting elements with $(‘elementID’)!
This is totally unnecessary because you can make your own function like this:
function $(element) {
if (typeof element == "string") {
element = document.getElementById(element);
}
return element
}