// JavaScript Document
function testForm(form)
{
	if (form.year.value=="")
	{
		alert("Error");
		form.year.style.backgroundColor='#FF6633';
		return;
	}
	else
	{
		form.year.style.backgroundColor='white';
	}
	
	if (form.mes.value=="")
	{
		alert("Error");
		form.mes.style.backgroundColor='#FF6633';
		return;
	}
	else
	{
		form.mes.style.backgroundColor='white';
	}
	form.submit();
}