// Mozilla Year Fix
function MozillaYearFix(theYear){
	if (Number(theYear) < 1900){
		return (Number(theYear) + 1900);
	}
	else{
		return (Number(theYear));
	}
}