function datechooserinit(datebase)
		{

			/*

				It will show exactly where the icon is clicked
				It will update the 'monthselectex4' select with the PHP-style date 'n' (month number with no preceding '0').
				It will also update the 'dayselectex4' select with the PHP-style date 'j' (day number with no preceding '0').
				It will also update the 'yearselectex4' select with the PHP-style date 'Y' (4-digit year).
				It will place an icon ('datechooser.png') to the right of the 'yearselectex4' select.
				The icon will have the default title ('Click to choose a date').
			*/

			var objDateChooser = new DateChooser();


			var dayname=datebase+'_day';
			var yearname=datebase+'_year';
			var monthname=datebase+'_month';
			theo=new Object();
			setPropertyToValue(theo,monthname,'m');
			setPropertyToValue(theo,dayname,'d');
			setPropertyToValue(theo,yearname,'Y');
			
			




			/* document.write(yearname); */
			objDateChooser.setUpdateField(theo);

			objDateChooser.setIcon('html/js/datechooser/datechooser.png', yearname);

			return true;
		}

		function setPropertyToValue(oObj, sPropName, value) {
			oObj[sPropName] = value;
		}
		
		
