// GLOBAL DATA FILE: Changes made to the data within this file update across entire site immediately. 
// REMINDER: If you publish (HTML or Data) but don't see your changes, press the "Reload" button that I've provided. Odds are that you published correctly but are simply being "blinded" by a cached version of the page.

DB = new Array(); DB.Contact = new Array(); DB.Rate = new Array(); DB.Terms = new Array();

// Contact Info
DB.Contact.OwnerName = "Bill & Linda Deeb";
DB.Contact.ChecksPayableTo = "Bill Deeb";
DB.Contact.OwnerEmail = "bdeeb@razzolink.com";
DB.Contact.Tel = "(831) 484-1989";
DB.Contact.Fax = "(831) 484-9722";
DB.Contact.Street = "27770 Mesa del Toro Road";
DB.Contact.CityStZip = "Salinas, California 93908";
DB.Contact.WebSite = "http://www.maui-now.com";


// Rental Rates, Terms & Conditions
// Rates are expressed in mathematical format as opposed to financial format. Dollar signs & commas are forbidden.
DB.Rate.Nightly = 150;
DB.Rate.Weekly  = 140;
DB.Rate.TwoWeek = 130;

// Bill: Do not increase taxes on 7/1/2010 as this is handled internally by the rental calculator software
// Any rental in which the departure is on or after 7/1/2010 gets auto-charged 1% more
DB.Rate.Tax = .1241; 
DB.Rate.Discount = 0;
DB.Rate.DailyParkingFee = 7;
DB.Terms.MinimumNights = 5;