TargetDate = gComTime;
CountActive = true;
CountStepper = -1;
LeadingZero = true;
DisplayFormat = "%%H%% Hrs, %%M%% Mins : %%S%%";
FinishMessage = "It is finally here!";


function gComWidget() {
	gComCreate();
	document.getElementById('gcw_sidebar').style.display = 'none';
	
	if(gComEnabled) {
		var futuredate = new cdtime("cntdwn", TargetDate);
		futuredate.displaycountdown("hours", formatresults);
		//var futuredate2 = new cdtime("cntdwn2", TargetDate);
		//futuredate2.displaycountdown("hours", formatresults);
	}
}
function testCurrentDate(year, month, day, hours, minutes) {
	var newDate = new Date();
	return testDate(year, month, day, hours, minutes, newDate.getFullYear(), newDate.getMonth()+1, newDate.getDate(), newDate.getHours(), newDate.getMinutes());
}
function testDate(year, month, day, hours, minutes, year_b, month_b, day_b, hours_b, minutes_b) {
	/* check if time is up */
	
	if(year == year_b) { gyear = true; } else { gyear = false; }
	if(month == month_b) { gmonth = true; } else { gmonth = false; }
	if(day == day_b) { gday = true; } else { gday = false; }
	if(hours == hours_b) { ghours = true; } else { ghours = false; }
	
	if(year < year_b || (month < month_b && gyear) || (gyear && gmonth && day < day_b) || (gyear && gmonth && gday && hours < hours_b) || (gyear && gmonth && gday && ghours && minutes < minutes_b)) {
		return false;		
	} else return true;
}
function gComCreate() {
	if(gComEnabled) { 
		var testC = testCurrentDate(gComYear, gComMonth, gComDay, gComHours, gComMinutes);
		var testB = testCurrentDate(gComYearS, gComMonthS, gComDayS, gComHoursS, gComMinutesS);
		
		if(!testC || testB) gComEnabled = false;

	}
	/* create widget div and inner elements */
	
	
	
	
	if(!gComEnabled) 
	{
		gComText = 'See more specials and packages at The Plaza Suites.';
		gComTitle = 'Hot Deal Offer Coming Soon!';
		gComLink = 'http://www.theplazasuites.com/promotions.html';
		gComButton = '<img src="http://gcommercewidgets.com/widget/plaza/special-offers-btn.png" title="Special Offers" alt="Special Offers" />';
		gComBook = 'specials';
		var widget_data = '<div id="gcw_date"><span id="cntdwn">See exclusive offers only available here</span></div><a href="javascript:void(0);" id="gcw_more" onclick="gcw_more()">Hot Deal Details</a>';		
	} 
	else 
	{
		gComButton = '<img src="http://gcommercewidgets.com/widget/plaza/book-now-btn.png" title="Book Now!" alt="Book Now!" />';
		gComBook = 'reserve';
		var widget_data = '<div id="gcw_date"><span id="cntdwn"></span></div><a href="javascript:void(0);" id="gcw_more" onclick="gcw_more()">Hot Deal Details</a>';
	}
	
	//var widget_data = '<div id="gcw_date"><span id="cntdwn"></span></div><a href="javascript:void(0);" id="gcw_more" onclick="gcw_more()">Hot Deal Details</a>';
	createElement('gComWidget', 'div', 'gcw_widget', 'gcw_widget', widget_data, '');
	
	var sidebar_data = '<a id="gcw_close" href="javascript:void(0);" onclick="gcw_more()">Close Box</a>';
	sidebar_data = sidebar_data + '<div id="gcw_content"><div id="gcw_headers"><div id="gcw_title">' + gComTitle + '</div></div><div class="gcw_clear"></div>';
	sidebar_data = sidebar_data + '<p>' + gComText + '</p><a onClick="javascript:pageTracker._trackPageview(\'/widget/' + gComBook + '\');" id="gcw_sidebar_book" href="' + gComLink + '">' + gComButton + '</a><div class="gcw_clear"></div></div>';
	
	createElement('gComWidget', 'div', 'gcw_sidebar', 'gcw_sidebar', sidebar_data, 'display:none;');
	
	createElement('gComWidget', 'div', 'gcw_clear', 'gcw_clear', '', '');
}

function detectBrowser() {
	userAgent = window.navigator.userAgent;

	var bSafari = 'Safari'; var aSafari = 'safari';
	var bFirefox = 'Firefox'; var aFirefox = 'firefox';
	var bIE = 'MSIE'; var aIE = 'msie';

	if(userAgent.search(bSafari) != -1 || userAgent.search(aSafari) != -1) {
		return 'safari';
	} else if(userAgent.search(bFirefox) != -1 || userAgent.search(aFirefox) != -1) {
		return 'firefox';
	} else if(userAgent.search(bIE) != -1 || userAgent.search(aIE) != -1) {
		return 'ie';
	} else {
		return 'unkown';
	}
}

function createElement(dparent, dtype, did, dclass, dinnerhtml, dstyle) {
	var browserName = navigator.appName; 
	var dparent = document.getElementById(dparent);
		
	var newElement = document.createElement(dtype);

	newElement.setAttribute('id', did);
	newElement.setAttribute('class', did);
	newElement.setAttribute('style', dstyle);
	newElement.innerHTML = dinnerhtml;

	dparent.appendChild(newElement);
}

function gcw_more() {
	var gcw_more = document.getElementById('gcw_more');
	var gcw_sidebar = document.getElementById('gcw_sidebar');
	
	if(gcw_sidebar.style.display == 'none') {
		gcw_sidebar.style.display = 'block';
		//gcw_more.style.display = 'none';
		pageTracker._trackPageview('/widget/open');
	} else {
		gcw_sidebar.style.display = 'none';
		//gcw_more.style.display = 'block';
		pageTracker._trackPageview('/widget/close');
	}
}

/* TIME */
function cdtime(container, targetdate){
if (!document.getElementById || !document.getElementById(container)) return
this.container=document.getElementById(container)
this.currentTime=new Date()
this.targetdate=new Date(targetdate)
this.timesup=false
this.updateTime()
}

cdtime.prototype.updateTime=function(){
var thisobj=this
this.currentTime.setSeconds(this.currentTime.getSeconds()+1)
setTimeout(function(){thisobj.updateTime()}, 1000) //update time every second
}

cdtime.prototype.displaycountdown=function(baseunit, functionref){
this.baseunit=baseunit
this.formatresults=functionref
this.showresults()
}

cdtime.prototype.showresults=function(){
var thisobj=this


var timediff=(this.targetdate-this.currentTime)/1000 //difference btw target date and current date, in seconds
if (timediff<0){ //if time is up
this.timesup=true
this.container.innerHTML=this.formatresults()
return
}
var oneMinute=60 //minute unit in seconds
var oneHour=60*60 //hour unit in seconds
var oneDay=60*60*24 //day unit in seconds
var dayfield=Math.floor(timediff/oneDay)
var hourfield=Math.floor((timediff-dayfield*oneDay)/oneHour)
var minutefield=Math.floor((timediff-dayfield*oneDay-hourfield*oneHour)/oneMinute)
var secondfield=Math.floor((timediff-dayfield*oneDay-hourfield*oneHour-minutefield*oneMinute))
if (this.baseunit=="hours"){ //if base unit is hours, set "hourfield" to be topmost level
hourfield=dayfield*24+hourfield
dayfield="n/a"
}
else if (this.baseunit=="minutes"){ //if base unit is minutes, set "minutefield" to be topmost level
minutefield=dayfield*24*60+hourfield*60+minutefield
dayfield=hourfield="n/a"
}
else if (this.baseunit=="seconds"){ //if base unit is seconds, set "secondfield" to be topmost level
var secondfield=timediff
dayfield=hourfield=minutefield="n/a"
}
this.container.innerHTML=this.formatresults(dayfield, hourfield, minutefield, secondfield)
setTimeout(function(){thisobj.showresults()}, 1000) //update results every second
}

/////CUSTOM FORMAT OUTPUT FUNCTIONS BELOW//////////////////////////////

//Create your own custom format function to pass into cdtime.displaycountdown()
//Use arguments[0] to access "Days" left
//Use arguments[1] to access "Hours" left
//Use arguments[2] to access "Minutes" left
//Use arguments[3] to access "Seconds" left

//The values of these arguments may change depending on the "baseunit" parameter of cdtime.displaycountdown()
//For example, if "baseunit" is set to "hours", arguments[0] becomes meaningless and contains "n/a"
//For example, if "baseunit" is set to "minutes", arguments[0] and arguments[1] become meaningless etc


function formatresults(){
if (this.timesup==false){//if target date/time not yet met
var displaystring=arguments[1]+"hrs : "+arguments[2]+"mins : "+arguments[3]+"secs"
}
else{ //else if target date/time met
var displaystring="Future date is here!"
}
return displaystring
}

function formatresults2(){
if (this.timesup==false){ //if target date/time not yet met
var displaystring="<span class='lcdstyle'>"+arguments[0]+" <sup>days</sup> "+arguments[1]+" <sup>hours</sup> "+arguments[2]+" <sup>minutes</sup> "+arguments[3]+" <sup>seconds</sup></span> left until this Christmas"
}
else{ //else if target date/time met
var displaystring="" //Don't display any text
alert("Christmas is here!") //Instead, perform a custom alert
}
return displaystring
}

gComWidget();