// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function toggle_subitems(subdiv_id){
	$$('.sub_div').each( Element.hide);
	if(subdiv_id != ""){
		$(subdiv_id).show();
	}	
}

function addBookmark(title,url) {  
	if (window.sidebar) {  
		window.sidebar.addPanel(title, url,"");  
	} else if( document.all ) {  
		window.external.AddFavorite( url, title);  
	} else if( window.opera && window.print ) {  
		return true;  
	}  
}  

