// Popup Chat Window
function popupChat(){
	$.fn.colorbox({width:"720", href:"/popupChatWindow.html"});
}

var COOKIE_NAME = 'buck_closePopup';


// check cookie
function checkCookie() {		
	if ($.cookie(COOKIE_NAME) != null){
		// user has elected to close popup box; hide for 2hrs
		//alert('cookie in place');
	}else{
		// show popup
		setTimeout ("popupChat()", 60000);
	}
};


// set cookie by num of days
function setCookie() {
	var date = new Date();
	date.setTime(date.getTime() + (1 * 2 * 60 * 60 * 1000));	// (now) + DAYS, HRS, MINS, SECS, MSECS
	$.cookie(COOKIE_NAME, date, { expires: date });
	//alert('Cookie saved \n Expires: '+date);
};


function closeChatWindow(){
	$.fn.colorbox.close();
}

function closeChatWindow_nothanks(){
	setCookie();
	$.fn.colorbox.close();
}	




$(document).ready(function(){
	
	checkCookie();
	
});



