// JavaScript Document
function autoResize()
{
var obj = document.getElementById('linkpage');
var thisHeight = obj.contentWindow.document.body.scrollHeight;
if (thisHeight < 325) {thisHeight = 325;}
obj.style.height = thisHeight + "px";
document.getElementById('SIDEBAR').style.height = thisHeight + "px";
}
