function showShowsList() {
    var list = document.getElementById('menuShowsList');
	
    list.style.visibility = 'visible';
}

function hideShowsList() {
    var list = document.getElementById('menuShowsList');
	
    list.style.visibility = 'hidden';
}

function onWhatsNewItemClicked(url,popupWidth,popupHeight, path){

   // setWhatsNewActive();
    popup(url,popupWidth,popupHeight);
   // window.location=path+"&active=6";
}

function setWhatsNewActive(){

    //Reset the menuArea image
    document.getElementById("menuHomeContainer").className="menuHome";
    document.getElementById("menuShowsContainer").className="menuShows";
    document.getElementById("menuArtistsContainer").className="menuArtists";
    document.getElementById("menuProgramArchiveContainer").className="menuProgramArchive";
    document.getElementById("menuWhatsNewContainer").className="menuWhatsNewActive";
}

function popup(url,popupWidth,popupHeight)
{
    window.open(encodeURI(url),'_blank','height='+popupWidth+', width='+popupHeight);
    return false;
}