function dates(){
	var today = new Date();
	var tomorrow = new Date();
	tomorrow.setDate(today.getDate() + 1);
	for (var i = 0; i < document.getElementsByTagName("form").length; i++)
		{
			if (document.forms[i].elements["doa_dd"])
				{
					document.forms[i].elements["doa_dd"].value = addLead(today.getDate());
					document.forms[i].elements["doa_mm"].value = addLead(today.getMonth() + 1);
			
			if (document.forms[i].elements["dod_dd"])
				{
					document.forms[i].elements["dod_dd"].value = addLead(tomorrow.getDate());
					document.forms[i].elements["dod_mm"].value = addLead(tomorrow.getMonth() + 1);
				}
			}
		}
}
function addLead(x)
	{
		if (x < 10)
			{
			//	x = "0" + x;
			}
		return x;
	}