13/03/2017
'; } } function getStyle(el,styleProp) { try { var x = document.getElementById(el); if (x == undefined || x == null) { return 'none'; } var y = false; if (x.currentStyle) { y = x.currentStyle[styleProp]; } else if (window.getComputedStyle) { y = document.defaultView.getComputedStyle(x, null).getProp...