function redirectPage()
{
	
	var box = document.getElementById("_ctl0_items_statisticoption");
	var strPath = box.options[box.selectedIndex].value;
	
	if(strPath != null)
	{
		
		window.location = box.options[box.selectedIndex].value;
		
		return;
	}
		
}

function homeredirectPage()
{

var choice = document.getElementById("item2_chooseoption");
	var path = choice.options[choice.selectedIndex].value;
	
	if(path != null)
	{
		
		window.location = choice.options[choice.selectedIndex].value;
		return;
	}


}

