		function addEvent(obj, evType, fn){
                if (obj.addEventListener)
                        obj.addEventListener(evType, fn, true)
                if (obj.attachEvent)
                        obj.attachEvent("on"+evType, fn)
        }
		
		function moi() {
		var divm = document.getElementById('assfeed').style;
		divrssr = document.getElementById('assmail').style.display = 'none';
		divm.position = 'absolute';
		divm.left = '280px';
		divm.top = '120px';
		if (divm.display == 'none') {
		divm.display = 'block';
		}
		else {
		divm.display = 'none';
		}
		}
		
		function moit() {
		var divm = document.getElementById('assmail').style;
		divmailr= document.getElementById('assfeed').style.display = 'none';		
		divm.position = 'absolute';
		divm.left = '280px';
		divm.top = '120px';
		if (divm.display == 'none') {
		divm.display = 'block';
		}
		else {
		divm.display = 'none';
		}
		}		
			
		window.onload=function()
		{
		divrss = document.getElementById('assmail').style.display = 'none';
		divmail= document.getElementById('assfeed').style.display = 'none';
		
		botaorss=document.getElementById('btrss');
		botaomail=document.getElementById('btmail');
		
		botaorss.attributes['href'].value='#';
		botaomail.attributes['href'].value='#';
		
		addEvent(botaorss,'click',moi);
		addEvent(botaomail,'click',moit);
		
		}
		
		
		
		