
    function ShowEventsBySection(strURL, drp)
        {
      
        var drPrdt= document.getElementById(drp);
        var x = drPrdt[drPrdt.selectedIndex].value;
        var y = drPrdt[drPrdt.selectedIndex].text
        if( x == "0") 
			{
		    var url = "http://www.onediver.com/" + strURL  + "/events/";
	        window.location.href=url;
			}else{
				 var url = "http://www.onediver.com/" + strURL  + "/"+  y + "/";
		        window.location.href=url;
				 }
         
        }