function ieCssWorkaround ( ) {
//     document.getElementById ( 'content2' ).style.overflow = 'scroll';
//     document.getElementById ( 'content' ).style.width = window.screen.width;
//     document.getElementById ( 'content' ).style.height = window.screen.height;
    if ( navigator.appName == 'Microsoft Internet Explorer' ) {
        if ( document.getElementById ( 'rightmostIndexImg' ) != null ) {
            if ( navigator.appVersion.indexOf ( 'MSIE 6' ) != -1 ) {
                document.getElementById ( 'rightmostIndexImg' ).style.marginRight = '3em';
            } else {
                document.getElementById ( 'rightmostIndexImg' ).style.marginRight = '4em';
                //document.getElementById ( 'rightmostIndexImg' ).style.marginLeft = '-3em';
            }
        }
    }
//     document.getElementById ( 'layoutTbl' ).cellspacing = '0';
//     document.getElementById ( 'layoutTbl' ).cellpadding = '0';
    
//     document.write ( "height = " + window.height + "<br />" );
//     document.write ( "availHeight = " + window.availHeight + "<br />" );
//     document.write ( "width = " + window.width + "<br />" );
//     document.write ( "availWidth = " + window.availWidth + "<br />" );
    
    
}