/*
(c) 2006 Horizon Marine, Inc.  Marion, MA.  All rights reserved.

This code was developed by Horizon Marine, Inc. and is protected by 
copyright law. You may not copy, retransmit, archive, modify, distribute, 
or exploit any content on iBoatTrack.com. Redistribution of any content 
over any network, construction of a database, or offer for sale of any 
content is prohibited without written permission from Horizon Marine, Inc. 
Content that appears on this website is for personal use only, commercial 
use of the content is strictly prohibited.
*/


// These values have to be rounded because JS can't handle leading zeros!!!!

// truncate to hours only (day in this case)
var startDate =  new Date(2000,0,1);
startDate.setUTCFullYear(2008);
startDate.setUTCMonth(4);
startDate.setUTCDate(14);
startDate.setUTCHours(16);
startDate.setUTCMinutes(0);
startDate.setUTCSeconds(0);
startDate.setUTCMilliseconds(0);

// truncate to hours only (day in this case)
var endDate =  new Date(2000,0,1);
endDate.setUTCFullYear(2008);
endDate.setUTCMonth(4);
endDate.setUTCDate(21);
endDate.setUTCHours(14);
endDate.setUTCMinutes(0);
endDate.setUTCSeconds(0);
endDate.setUTCMilliseconds(0);

var t_int = 3600;
var t_tol = 3600;
