function validate_allages()
{
	if(document.all.allages.value=="0") 
	{
		document.all.minAgeDiv.style.visibility='visible';
		return false;
	} 
	else
	{
		document.all.minAgeDiv.style.visibility='hidden';
		return true;
	}
}

function validate_cover()
{
	if(document.all.cover.value=="1") 
	{
		document.all.coverAmtDiv.style.visibility='visible';
		return false;
	} 
	else
	{
		document.all.coverAmtDiv.style.visibility='hidden';
		return true;
	}
}