/*
 * Copyright (c) 2000 Bjørn Bouet Smith (b.smith@get2net.dk)
 * Please use this script everywhere you like, but keep this header intact.
 * Modified by Kieron Atkinson 19/11/04
*/


/*Create initial properties object*/
myPickProp3= new Object();

/*Images*/
myPickProp3.leftIMG='./files/datepicker/left.gif';
myPickProp3.rightIMG='./files/datepicker/right.gif'
myPickProp3.pickIMG='./files/datepicker/cal_icon.gif'
/*End images*/

/*Size of datepicker - Will scale if fonts are too big to fit*/
myPickProp3.width=135;
/* End size*/

/*Font properties*/
	/*month & year header*/
	myPickProp3.headBgColor='#C0C0FF';
	myPickProp3.headFontSize=12; //pixels
	myPickProp3.headFontFamily='Verdana,Helvetica,Arial';
	myPickProp3.headFontColor='#000000';

	/*The individual days*/
	myPickProp3.dateBgColor='#FFFFFF';
	myPickProp3.dateFontSize=12; //pixels
	myPickProp3.dateFontFamily='Verdana,Helvetica,Arial';
	myPickProp3.dateFontColor='#000000';

/*End font properties*/	


/*Date properties*/
myPickProp3.weekstartat='m';  //can be either s for sunday or m for monday
myPickProp3.dateformat='dd#mm#yy'; // use dd for day, mm for month, and yy or yyyy for two-digit or four-digit year. Must be separated with #
myPickProp3.datesep='/'; // the date separator that your language use. ie / or -
/*End date properties*/

/*Day names*/

//Should be pretty explanatory. Object.mon=monday etc.
myPickProp3.mon='Mo';
myPickProp3.tue='Tu';
myPickProp3.wed='We';
myPickProp3.thu='Th';
myPickProp3.fri='Fr';
myPickProp3.sat='Sa';
myPickProp3.sun='Su';
/*End day names*/


/*Month names*/
myPickProp3.jan='January';
myPickProp3.feb='February';
myPickProp3.mar='March';
myPickProp3.apr='April';
myPickProp3.may='May';
myPickProp3.jun='June';
myPickProp3.jul='July';
myPickProp3.aug='August';
myPickProp3.sep='September';
myPickProp3.oct='October';
myPickProp3.nov='November';
myPickProp3.dec='December';
/*End month names*/

/*Return field for the date ie. which html-field should the date be returned to, when the user selects a date*/
myPickProp3.retField="document.bookingform.enddate";
/*End return field*/

//Call the constructor with (name, properties object) as parameters
/*
It is possible to have more than one date picker on the same page. 
Just give the objects and properties objects different names.
And remember to create a properties object for each date picker

ie. 
myPick2=new DatePicker('myPick2',myPickProp3);
myPick3=new DatePicker('myPick3',myPickProp3);
*/

myPick3=new DatePicker('myPick3',myPickProp3);
