/* Proactive? */
var path = window.location.pathname;
var title = document.title.replace("Cables To Go - ", "");

function slideInChat() {
	new Effect.Move($('proactiveChat'), { x: 0, y: 480, duration: 1.1 });
	pageTracker._trackEvent(title+" Proactive Chat", "Displayed", "Proactive Live Chat")
}
	
function cookieMonster() {
	if ($('pcIgnore').checked) {
		var expires=new Date();
		expires.setDate(expires.getDate()+45);
		document.cookie="dontask=dont_ask_again;expires="+expires.toGMTString()+";path=/;";
		pageTracker._trackEvent(title+" Proactive Chat", "Ignored Perm", "Proactive Live Chat")
	}
	else {
		pageTracker._trackEvent(title+" Proactive Chat", "Ignored Temp", "Proactive Live Chat")
		}
	$('proactiveChat').fade({duration: 1.0});
}
function bringChat(cmtag) {
	window.open('https://server.iad.liveperson.net/hc/21882319/?cmd=file&file=visitorWantsToChat&site=21882319&byhref=1&AEPARAMS&cm_sp='+cmtag+'&amp;referrer='+document.location,'chat21882319','width=475,height=400,resizable=yes');
	pageTracker._trackEvent(title+" Proactive Chat", "Accepted", "Proactive Live Chat")
	$('proactiveChat').fade({duration: 1.0});
}
