function hideobj(obj) {var temp = document.getElementById(obj);if (temp.style.display == 'none') {temp.style.display = 'block';} else {temp.style.display = 'none';}; }; function iframesize(iden) {var the_height = document.getElementById(iden).contentWindow.document.body.scrollHeight; document.getElementById(iden).height = the_height; var the_width = document.getElementById(iden).contentWindow.document.body.scrollWidth; document.getElementById(iden).width = the_width; }