Orkut 99% width

By Manager Last update Apr 21, 2009 — Installed 549 times. Daily Installs: 2, 4, 3, 2, 0, 1, 2, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2, 2, 0, 2, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0
// ==UserScript==
// @name           Orkut 99% width
// @namespace      http://gverma.blogspot.com
// @description    converts orkut container width to 99% ,useful for users having widescreen
// @include        http://www.orkut.com/*
// @include        http://orkut.com/*
// ==/UserScript==
 (function() {
     function do_widen(id, min) {
         var container = document.getElementById(id);
         if (!container)
             return;
         if (min)
             container.style.minWidth = min;
     }
     try {
     do_widen("headerin", "99%");
     do_widen("container", "99%");
     } catch (e) {
         GM_log( 'Orkut99percent exception: ' + e );
		 //alert(e);
		}
    
})();