﻿function MM_jumpMenuFAQ(selObj){ //v3.0
var id=document.location.toString().split("?");
	id=id[0];
	id=id.replace('#','');
	id+="?Cat=";
	
window.location=id+selObj.options[selObj.selectedIndex].value;
  }

function setSelectedFAQ()
{
	
	var id=document.location.toString().split("?Cat=");
	id=id[1];
	var drp=document.getElementById(id);
	if(id!=undefined)
	{
		var catDrp=document.getElementById('faqCategory');
		for(var i=0;i<catDrp.options.length;i++)
		{
		id=id.replace('%20'," ")
		
		
			if(catDrp.options[i].text==id)
				catDrp.selectedIndex=i;
		}
		
	}
			
}
function MM_jumpMenuNews(selObj){ //v3.0
var id=document.location.toString().split("?");
	id=id[0];
	id=id.replace('#','');
	id+="?Year=";
	
window.location=id+selObj.options[selObj.selectedIndex].value;
  }
  function setSelectedNews()
{
	
	var id=document.location.toString().split("?Year=");
	id=id[1];
	var drp=document.getElementById(id);
	if(id!=undefined)
	{
		
		drp.selected=id;
	}
			
}

