diff --git a/module/common/view/footer.html.php b/module/common/view/footer.html.php
index 0cd439e7c7..08a9d68424 100644
--- a/module/common/view/footer.html.php
+++ b/module/common/view/footer.html.php
@@ -17,7 +17,7 @@
diff --git a/www/js/my.full.js b/www/js/my.full.js
index 17927c5d8e..99fc827379 100644
--- a/www/js/my.full.js
+++ b/www/js/my.full.js
@@ -425,13 +425,14 @@ function saveWindowSize()
}
/**
- * Set content height
+ * Set Outer box's width and height.
*
* @access public
* @return void
*/
-function setContentHeight()
+function setOuterBox()
{
+ var winWidth = window.screen.width;
var winHeight = $(window).height();
var headerH = $('#header').height();
var footerH = $('#footer').height();
@@ -441,6 +442,11 @@ function setContentHeight()
if ($.browser.msie && ($.browser.version == "6.0") && !$.support.style) outerH = winHeight - headerH - footerH - 98;
$('.outer').height(outerH);
}
+ if($.browser.msie && ($.browser.version == "6.0") && !$.support.style)
+ {
+ winWidth -= 49;
+ $('#wrap').width(winWidth);
+ }
}
/**