new function() 
{
    NUANCE.top = {
	init: function()
	{
	    this.resize();
	    window.onresize = this.resize;
	},
	resize: function()
	{
	    function getBrowserHeight() { 
		if ( window.innerHeight) 
		    return window.innerHeight;
		if ( document.documentElement && document.documentElement.clientHeight != 0 ) 
		    return document.documentElement.clientHeight;
		if ( document.body ) 
		    return document.body.clientHeight; 
		return 0;  
	    }  
	    function getBrowserWidth() { 
		if ( window.innerWidth) 
		    return window.innerWidth;
		if ( document.documentElement && document.documentElement.clientWidth != 0 ) 
		    return document.documentElement.clientWidth;
		if ( document.body ) 
		    return document.body.clientWidth; 
		return 0;  
	    }  
	    var h = getBrowserHeight();
	    var w = getBrowserWidth();
    	    if (div = document.getElementById('base2')) {
		div.position = 'absolute';
		div.style.top = (h - 400 - 40)/2 + 'px';
		div.style.height = '400px';
	    }
    	    if (div = document.getElementById('o_base')) {
	        var w = getBrowserWidth();
		div.position = 'absolute';
		div.style.top = (400 - 240)/2 + 'px';
		div.style.left = (w - 800)/2 + 'px';
		div.style.height = '240px';
	    }
    	    var div = document.getElementById('base');
	    if (div) 
	        div.style.height = (h - 400 - 40)/2 + 400 + 'px';
	}
    }
    NUANCE.addInit(NUANCE.top,NUANCE.top.init);
}
