function resizeFrame() {
/*  try {
    frame = $('iframe#subpage').get(0);
    f_height = frame.contentWindow.document.body.offsetHeight + 40;
    if (f_height < 550)
	    f_height = 550;
    frame.style.height = f_height + 'px';
    $('.frame_side').css({height: (f_height - 230)+'px'});
	} catch(e) {};
  setTimeout('resizeFrame()', 2000);
*/
}
$(document).ready(function() {
  resizeFrame();
});
