var wkdArray = new Array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat')
var arrShortDay = new Array('Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa')
var arrMonth = new Array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec')
var monthArray = arrMonth
var dateMask = 'd|m|y|-'
var incArray = new Array("Stay in a luxurious five star Hyatt room overlooking lush gardens or the golf course. Relax by the lagoon pool reading your complimentary newspaper or take advantage of adult access to the Rec Club", "Rise refreshed. Ease into your day at the Hyatt. There is no need to rush. Enjoy a freshly prepared breakfast just for you, and enjoy the 12pm late check out - when you are ready to make a move.", "Enjoy the view of the beautiful lagoon pool from your private balcony. Includes complimentary morning newspaper and adult access to the Rec Club", "Rise refreshed overlooking the stunning Lagoon pool. There is no need to rush. Enjoy a freshly prepared breakfast just for you, and enjoy the 12pm late check out - when you are ready to make a move.", "Overlooking the pool or marina from your private balcony. Includes continental breakfast, evening drinks and canapés, all day tea, coffee, juices, fruits and biscuits from the exclusive Regency Club. ", "A luxurious Suite with a spacious lounge and separate king bedroom. Ideal for 2 adults, 2 children (under 12). Includes continental breakfast, evening drinks and canapés, in the exclusive Regency Club")
function GetLastMinOfferHTML()
{
var lmoHTML =
"" +
"
" +
"" +
"| Room | " +
"Room Rate, AUD | " +
"Total | " +
"
" +
"" +
"Mon 23-Nov | " +
"Tue 24-Nov | " +
"Wed 25-Nov | " +
"
" +
"" +
"Deluxe Room" +
"" +
"" +
" | " +
" | " +
"availability: 1 | " +
" " +
" " +
" | " +
"225 | " +
"205 | " +
"205 | " +
"635 | " +
"
" +
"" +
"Awaken Package" +
"" +
"" +
" | " +
" | " +
"availability: 1 | " +
" " +
" " +
" | " +
"265 | " +
"245 | " +
"245 | " +
"755 | " +
"
" +
"" +
"Lagoon View Room" +
"" +
"" +
" | " +
" | " +
"availability: 1 | " +
" " +
" " +
" | " +
"275 | " +
"255 | " +
"255 | " +
"785 | " +
"
" +
"" +
"Lagoon Awaken Package" +
"" +
"" +
" | " +
" | " +
"availability: 1 | " +
" " +
" " +
" | " +
"315 | " +
"295 | " +
"295 | " +
"905 | " +
"
" +
"" +
"Regency Club Room" +
"" +
"" +
" | " +
" | " +
"availability: 1 | " +
" " +
" " +
" | " +
"320 | " +
"300 | " +
"300 | " +
"920 | " +
"
" +
"" +
"Queenslander Suite" +
"" +
"" +
" | " +
" | " +
"availability: 1 | " +
" " +
" " +
" | " +
"360 | " +
"340 | " +
"340 | " +
"1,040 | " +
"
" +
"
" +
"
";
return lmoHTML;
}
//book button redirection
function LBook(rtID) {
location = "/SelectionsLinkRTG.asp?RoomTypeID=" + rtID + "&inDate=2009-11-23&outDate=2009-11-26&hotelid=1632&curr=AUD"
}