function setDropDown(day,month,year)
{
document.forms["monthmenu"].first.options[day].selected = true;
document.forms["monthmenu"].second.options[month].selected = true;
document.forms["monthmenu"].third.options[year].selected = true;
}

function navigate(formName)
{
	dayValue=document.forms[formName].first.options[document.forms[formName].first.selectedIndex].value.toLowerCase();
	monthValue=document.forms[formName].second.options[document.forms[formName].second.selectedIndex].value.toLowerCase();
	yearValue=document.forms[formName].third.options[document.forms[formName].third.selectedIndex].value.toLowerCase();
	if(dayValue=="day" || monthValue=="month" || yearValue=="year")
	{
	}
	else if(dayValue=="31" && (monthValue=="02" || monthValue=="04" || monthValue=="06" || monthValue=="09" || monthValue=="11"))
	{
	}
	else if (dayValue=="30" && monthValue=="02")
	{
	}
	else
	{

		window.location="/today/exodos/" + "?d=" + dayValue +  "&m=" + monthValue +  "&y=" + yearValue;
	}
}