// get CSS style of an object
function getStyle(el,styleProp) {
    var x = (typeof el == 'string')? document.getElementById(el):el;
    return (x.currentStyle) ? x.currentStyle[styleProp] : 
        document.defaultView.getComputedStyle(x,null).getPropertyValue(styleProp);
}