// JavaScript Document
var expand = false;
function iexpand(e, a) {
    if (expand) {
        if (a) {
            if (e.currentStyle.width != 'auto') {
                e.title = e.currentStyle.width;
            }
            e.style.width="auto";
        } else {
            e.style.width = e.title;
        }
    }
}
