function spOpenVideo($rel) { Shadowbox.open({ content: 'SPClient/playVideo.php?service=' + $rel[0] + '&url=' + $rel[1] + '&title=' + $rel[2], player: 'iframe', height: 394, width: 640 }); } function Tracker(selector, action_code){ this.selector = selector; this.action_code = action_code; } //*************************************************************** //* Mapeia os eventos para que seja gerado o log de estatistica * //*************************************************************** $(document).ready(function(){ $("#link_empresa").click(function(){ SaveStatistic("1",""); return true; }); $(".LogBusca a").click(function(){ SaveStatistic("15",this.id); return true; }); if(loadGuest()=="") { var guest_name = 'teste de carga';//prompt("Nome do usuario",""); saveGuest(guest_name); } }); //******************************************************** //* Salva a informação necessária no superpanel via ajax * //******************************************************** function SaveStatistic(action_code,extra) { $.getJSON("http://" + service_url + "/index/save-statistic","action_code="+action_code+"&extra="+extra+"&reference="+client_id+"&domain="+domain+"&guest="+loadGuest()+"&callback=?",function(data) { //alert(data.result); //<-Debug }); } function saveGuest(guest_name) { document.cookie="guest_name=" + escape(guest_name); } function loadGuest() { if (document.cookie.length>0) { c_start=document.cookie.indexOf("guest_name="); if (c_start!=-1) { c_start=c_start + "guest_name".length+1; c_end=document.cookie.indexOf(";",c_start); if (c_end==-1) c_end=document.cookie.length; return unescape(document.cookie.substring(c_start,c_end)); } } return ""; } function print_r(theObj){ if(theObj.constructor == Array || theObj.constructor == Object){ document.write("