function getElementComputedStyleProperty(a,b){if('currentStyle'in a){if(b in a.currentStyle)return a.currentStyle[b]}else if('getComputedStyle'in window){var c=getComputedStyle(a,null);if(b in c)return c[b]}return undefined}
