

	function latigoChatSetCookie(name,value){	
		var today = new Date();
		var expiry = new Date (today.getTime() + 365 * 24 * 60 * 60 * 1000);//un anio
		 
		if (value != null && value != "")
		 document.cookie = name + "=" + escape(value) + "; expires=" + expiry.toGMTString();
	}
	
	function latigoChatGetCookie(name){ 
	  var index = document.cookie.indexOf(name + "=");
	  if (index == -1) return null;
	  index = document.cookie.indexOf("=", index) + 1;
	  var endstr = document.cookie.indexOf(";", index);
	  if (endstr == -1) endstr = document.cookie.length;
	  return unescape(document.cookie.substring(index, endstr));
	}
	function setGuid(){setCookie("latigo_id",latigo_id);}	   
	function getDateNow(){
	   var today = new Date();
	   return (today.getMonth()+1)+"/"+today.getDate()+"/"+today.getYear()+" "+today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds(); 
	}    
	
	    if(latigoChatGetCookie('latigo_id') && latigoChatGetCookie('lastVisit')){
		    latigo_id = latigoChatGetCookie('latigo_id'); 
		    lastVisit = latigoChatGetCookie('lastVisit');
		}
		else{
		   latigo_id = "D6D6CD37-D56F-DADF-2E027DE752E53E9A";
		   lastVisit = getDateNow();	
		}
	
	
    latigoChatSetCookie("latigo_id", latigo_id);
	latigoChatSetCookie("lastVisit",lastVisit);
	try{
		latigo_location = top.document.location;
		latigo_title	= top.document.title;
		latigo_referrer = top.document.referrer;
	}
	catch(er){
		latigo_location = document.location;
		latigo_title	= document.title;
		latigo_referrer = document.referrer;	
	}
	var latigoChatVars = "location=" + escape(latigo_location) + "&title=" + escape(latigo_title) + "&referrer=" + escape(latigo_referrer) + "&lastVisit=" + escape(lastVisit) + "&browser=" + escape(navigator.appName) + "&OS=" + escape(navigator.platform);
	document.write('<script language="JavaScript" src="http://www.latigo.com.mx/chatLib/chatFunctions.cfm?CFID=6752007&CFTOKEN=49996024&d=20@arkanet.biz&sign=1&' + latigoChatVars + '"><\/script>');
