| 84 | | if (P0.currentStyle.marginTop) |
| 85 | | if (P0.currentStyle.marginTop != "auto") h_p += parseInt(P0.currentStyle.marginTop); |
| 86 | | if (P0.currentStyle.marginBottom) |
| 87 | | if (P0.currentStyle.marginBottom != "auto") |
| 88 | | h_p += parseInt(P0.currentStyle.marginBottom); |
| 89 | | if (P0.currentStyle.PaddingTop) h_p += parseInt(P0.currentStyle.PaddingTop); |
| 90 | | if (parseInt(P0.currentStyle.PaddingBottom)) h_p += parseInt(P0.currentStyle.PaddingBottom); |
| | 84 | if (jQuery(P0).css("marginTop")) |
| | 85 | if (jQuery(P0).css("marginTop") != "auto") h_p += parseInt(jQuery(P0).css("marginTop")); |
| | 86 | if (jQuery(P0).css("marginBottom")) |
| | 87 | if (jQuery(P0).css("marginBottom") != "auto") h_p += parseInt(jQuery(P0).css("marginBottom")); |
| | 88 | if (jQuery(P0).css("paddingTop")) h_p += parseInt(jQuery(P0).css("paddingTop")); |
| | 89 | if (parseInt(jQuery(P0).css("paddingBottom"))) h_p += parseInt(jQuery(P0).css("paddingBottom")); |