#myCorneringBottomRight {
   /* Firefox */
   position: fixed;
   bottom: 0;
   right: 0;

   /* Internet Explorer */
   _position: absolute;
   _top: expression(document.body.scrollTop + document.body.clientHeight - this.clientHeight);
   _left: expression(document.body.scrollLeft + document.body.clientWidth - offsetWidth);
}
#myCorneringBottomLeft {
   /* Firefox */
position: fixed;
left: 0px;
bottom: 0px;


   /* Internet Explorer */
   _position: fixed;
   _top: expression(document.body.scrollTop + document.body.clientHeight - this.clientHeight);
   _left: expression(document.body.scrollLeft + document.body.clientWidth - offsetWidth);
}
#myCorneringTopLeft {
   /* Firefox */
position: fixed;
left: 0px;
top: 0px;


   /* Internet Explorer */
   _position: fixed;
   _top: expression(document.body.scrollTop + document.body.clientHeight - this.clientHeight);
   _left: expression(document.body.scrollLeft + document.body.clientWidth - offsetWidth);
}
#myCorneringTopRight {
   /* Firefox */
position: fixed;
right: 0px;
top: 0px;


   /* Internet Explorer */
   _position: fixed;
   _top: expression(document.body.scrollTop + document.body.clientHeight - this.clientHeight);
   _left: expression(document.body.scrollLeft + document.body.clientWidth - offsetWidth);
}

