var Cache = new Object();
function get(id)
{
return (Cache[id]) ? Cache[id] : Cache[id] = document.getElementById(id);
}