function element(eId) {
    if(document.getElementById(eId)) {
	return document.getElementById(eId);
    } else if (document.all){
	return document.all[eId];
    }
}

function width(e) {
    return e.offsetWidth;
}
function height(e) {
    return e.offsetHeight;
}

