function getDOM(id){
	if (DOM = document.getElementById(id)){
		return DOM;
	}
	/* else { alert ("DOM: " + id); } */
}

function makeVisible (id) {
	getDOM(id).style.display = "block";
}

function makeHidden (id) {
	getDOM(id).style.display = "none";
}

function setAtt(id,attribute,value){
	getDOM(id).setAttribute(attribute, value);
}

function getAtt(id,attribute){
	return getDOM(id).getAttribute(attribute);
}