La copie de code est la suivante:
fonction setcwinheight (obj) {
var cwin = obj;
if (document.getElementByid) {
if (cwin &&! window.opera) {
if (cwin.contentDocument && cwin.contentDocument.body.offsetheight)
cwin.height = cwin.contentDocument.body.offsetheight + 30;
else if (cwin.document && cwin.document.body.scrollHeight)
cwin.height = cwin.document.body.scrollHeight + 30;
}
}
}
La copie de code est la suivante:
<iframe id = "iframeid_help" scrolling = "no" onload = "javascript: setcwinHeight (this)"
width = "670px" style = "border: 0px" frameborder = "0"> </ iframe>