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;
	}
}
function moreGenreDisplay(){
	if(document.getElementById('moreGenresContainer').style.height == '28px' || document.getElementById('moreGenresContainer').style.height == '')
	{
		document.getElementById('moreGenresContainer').style.height = '173px';
	}else{
		document.getElementById('moreGenresContainer').style.height = '28px';	
	}
}