[script]var getDocHeight = function(doc) { var d, body, html; d = doc || document, body = d.body, html = d.documentElement; if (body === null || body.scrollHeight === null || body.offsetHeight === null || html.clientHeight === null || html.scrollHeight === null || html.offsetHeight === null) { return false; } else { var height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight); return height; }};var setIframeHeight = function(id) { var ifrm, doc; ifrm = document.getElementById(id); doc = ifrm.contentDocument? ifrm.contentDocument: ifrm.contentWindow.document; ifrm.style.visibility = 'hidden'; ifrm.style.height = '10px'; ifrm.style.height = getDocHeight(doc) + 4 + 'px'; ifrm.style.visibility = 'visible';};setIframeHeight('iframe_lp');jQuery('#iframe_lp').bind('load', function() { setIframeHeight('iframe_lp');});jQuery(window).bind('resize', function() { setIframeHeight('iframe_lp');});[/script]