function toggle(id, id2) {
        		var state = document.getElementById(id).style.display;
            	if (state == 'block') {
                	document.getElementById(id).style.display = 'none';
           		} else {
               		document.getElementById(id).style.display = 'block';
					document.getElementById(id).style.top = '-348px';
					document.getElementById(id).style.right = '0px';
            	}
			}
function addToFavorites() {				
				if (window.external && window.external.AddFavorite) {
				window.external.AddFavorite(location.href, document.title);
				}
				if(window.sidebar && window.sidebar.addPanel)
				{
					window.sidebar.addPanel(document.title, location.href, '');
				}
			}