
	function  f_Month_Options ( HowManyMonths )
	{
		var MONTHS = [ "January"
		             , "February"
		             , "March"
		             , "April"
		             , "May"
		             , "June"
		             , "July"
		             , "August"
		             , "September"
		             , "October"
		             , "November"
		             , "December"
		             ] ;

		lDate  = new Date()
		Year   = lDate.getYear()
		Month  = lDate.getMonth()

		for ( ; HowManyMonths > 0 ; HowManyMonths -- , Month ++ )
		{
			if ( Month > 11 )  { Month = 0 ; Year ++ }

			document.write ( '<option value="' + (Month+1) + '*' + Year + '*">' 
			               + MONTHS[Month] + ' ' + Year 
			               + '</option>' 
			               )
		}

	}
