function getRef(obj){ return (typeof obj == "string") ? document.getElementById(obj) : obj; } function setStyle(obj,param,value){ getRef(obj).style[param] = value; } function setClassName(obj, className) { getRef(obj).className = className; }