// JavaScript Document

function expandCollapse(ElementId) {
	var theElement = document.getElementById(ElementId);
	theElement.style.display = (theElement.style.display == 'none') ? 'block' : 'none';
}

function addtofavorites() {
if( window.sidebar && window.sidebar.addPanel ) {
 window.sidebar.addPanel( window.title, window.href, '' );
} else if( window.external && ( navigator.platform == 'Win32' ||
 ( window.ScriptEngine && ScriptEngine().indexOf('InScript') + 1 ) ) ) {
 window.external.AddFavorite( location.href, document.title );
} else if( window.opera && window.print ) {
 return true;
}
return false;
}
