//Document shortut.
var doc = window.document;

//Short for 'document.getElementById'.
function getById(id){
	return doc.getElementById(id);
}
