//
// INSTRUCTIONS:
//    Fill in courtdates as YYYY-MM-DD below. Each courtdate can optionally be
//    connected to an URL. I.e. to supply some extra information about the precedings on
//    a certain date. The formal format of a courtdate is then as follows:
//
//    YYYY-MM-DD[URL[,TARGET[,WINDOWFEATURES]]];
//
//    Explanation of formal format:
//    YYYY: four digit year, MM: two digit month, DD: two digit day of month.
//    Parameters enclosed in brackets [] are optional.
//
//    THE COURT DATES in the list are separated by semicolons
//
//       Example of a valid date: 2000-12-12 or 2002-01-30
//
//    URL: a valid internet address
//
//       Example of a valid URL: http://www.teencourt.usa.org or /index.html or 2002-01-16.html
//
//    TARGET tells the web browser in which window it should open the URL up. If no TARGET 
//       is given the URL opens up in the current window thus replacing the current document 
//       which is the calendar html page (this is BAD because they will leave the website). 
//       If TARGET = _blank the URL will open up in a new window. 
//       If TARGET = _popup the URL will open in a popup window smaller than the original window. 
//       This is probably preferable to keep people from getting confused when the calendar 
//       window is covered with a new window.
//       TARGET can have any name.
//
//       Example of valid TARGETS: _blank or _popup (whenever someone clicks on a courtdate
//        with one of those targets a NEW window will pop open... eventually cluttering their 
//       screen if they don't manually close each window) --OR-- self-named targets such as 
//       "MyNewTarget" or "courtwindow" could also be used. (NOTE: you should probably 
//       NAME a new target... like "MyNewTarget" and use it consistently when you 
//       add information about the courtdate, because these information windows will open in
//       the same window each time...new information replacing the last viewed... this will
//       keep people from burying themselves in new browser windows)
//
//    WINDOWFEATURES is colonseparated list of name=value pairs that applies to the window
//           that opens if TARGET=_popup. Here is a list of valid windowfeatures:
//           toolbar[=yes|no]|[=1|0],location[=yes|no]|[=1|0],directories[=yes|no]|[=1|0],
//           status[=yes|no]|[=1|0],menubar[=yes|no]|[=1|0],scrollbars[=yes|no]|[=1|0],
//           resizable[=yes|no]|[=1|0],width=pixels,height=pixels
//
//       Example of valid WINDOWFEATURES: toolbar=1:width=640:height=480 or 
//               scrollbars=1:status=1:menubar=1 or location=1:status=1:width=320:height=240
//
//
//   Example of a list of courtdates:
//
//var courtdates = '2002-01-16;2002-01-30,2002-01-30.html;2002-02-03,http://www.courttv.com/,_blank;2002-02-20,2002-02-20.html,_popup,width=640:height=480:scrollbars=1:resizable';
//
//   The example list contains four court dates:
//      -   The first date, 2002-01-16 is just a regular court date without an URL.
//
//      -   The second date, 2002-01-30, is connected to an URL which resides
//          in the same directory as the calendar on the Teen Court site the name 
//          of the file is 2002-01-30.html. This URL will open in the same window
//          as and replace the calendar.
//
//      -   The third date, 2002-02-03, is connected to an URL which will open the web
//          site www.courttv.com in a new window.
//
//      -   The fourth date, 2002-02-20, is connected to an URL with a file that resides
//          in the same directory as the calendar on the Teen Court site the name 
//          of the file is 2002-02-20.html. The URL will open in a popup window 640x480 
//          pixels. The popup window will be resizable and have scrollbars and that's it.
//
var courtdates = '2002-01-16; 2002-01-30; 2002-02-20; 2002-03-06; 2002-03-20; 2002-04-03; 2002-04-24; 2002-05-08; 2002-05-22; 2002-06-05; 2002-06-19; 2002-09-18; 2002-10-02; 2002-10-16; 2002-10-11,2002-10-11_12.html,_popup,resizable=1:toolbar=1:scrollbars=1:width=640:height=480; 2002-10-12,2002-10-11_12.html,_popup,resizable=1:toolbar=1:scrollbars=1:width=640:height=480; 2002-10-16; 2002-11-06; 2002-11-20; 2002-12-04; 2002-12-18; 2003-01-08; 2003-01-22; 2003-02-05; 2003-02-19; 2003-03-05; 2003-03-19; 2003-04-02; 2003-04-16; 2003-05-07; 2003-05-21; 2003-06-04; 2003-06-18';

