

// //populatedropdown(id_of_day_select, id_of_month_select, id_of_year_select)
window.onload=function(){
populatedropdown("daydropdowna", "monthdropdowna")
populatedropdown("daydropdown", "monthdropdown")
}

function Show_Stuff()
{

if (document.getElementById("display1").style.display == "none")
{
document.getElementById("display1").style.display = "inline";
document.getElementById("display2").style.display = "none";
}
else
{

document.getElementById("display1").style.display = "none";
document.getElementById("display2").style.display = "inline";
}

}  

function Show_Stuff2()
{
if (document.getElementById("1display1").style.display == "none")
{
document.getElementById("1display1").style.display = "inline";
document.getElementById("1display2").style.display = "none";
}
else
{

document.getElementById("1display1").style.display = "none";
document.getElementById("1display2").style.display = "inline";
} 
}

