
function expandadvice(thistag)
{
	closeadvice(26);
	document.getElementById("text"+thistag).style.display='';
}
function closeadvice(Counter)
{
	for(i=1;i<=Counter;i++)
	{
		document.getElementById("text"+i).style.display='none';
	}
}

function MMMPS2CheckForgottenFields()
{
	var themessage2 = "You must fill out the following field: ";
	if (document.form1.Email.value=="")
	{
		themessage2 = themessage2 + "\nYour email in the forgotten password section.";
	}
//alert if fields are empty and cancel form submit
	if (themessage2 == "You must fill out the following field: ")
	{
//		document.form1.Submit.disabled=true;
		document.form1.submit();
		return true;
	}
	else
	{
		alert(themessage2);
		return false;
	}
}
