\n'); } function getDocHeight(doc) { if(doc.documentElement.scrollHeight) return doc.documentElement.scrollHeight; else // Can'treturn height, e.g. IE Mac. Take a guess return 700; } function setIframeHeight(iframeName, anchorLink) { var iframeWin = window.frames[iframeName]; var iframeEl = document.getElementById? document.getElementById(iframeName): document.all? document.all[iframeName]: null; if ( iframeEl && iframeWin ) { iframeEl.style.height = "auto"; // helps resize (for some) if new doc shorter than previous var docHt = getDocHeight(iframeWin.document); // need to add to height to be sure it will all show if (docHt) { iframeEl.style.height = docHt + "px"; if(anchorLink){ iframeWin.location.href = "#" + anchorLink; //;iframeWin.location.href + "#" + anchorLink; } } } } function showNav(){ document.write( ''); } function showRc(){ document.write( ''); }