if(CMSTools.isValidLocation()){
UsuariosWeb.checkUserLogued();
}
window._horaServer = 0;
var myRequest_time = new Request({
url : '/_post/minutouno/getTimeStamp.php',
method : 'get',
onSuccess : function(r){
window._horaServer = r;
}
});
myRequest_time.send();
window.showClock = (function(){
window._horaServer++;
var Digital = new Date(window._horaServer * 1000);
var hours = Digital.getHours()
var minutes = Digital.getMinutes()
var seconds = Digital.getSeconds()
if(minutes <= 9) minutes = "0"+minutes;
if(seconds <= 9) seconds = "0"+seconds;
document.getElementById('server_clock').innerHTML = hours + ":" + minutes + ":" + seconds + " ";
});
setInterval("window.showClock()",1000);
var hashtags = [];
try{
hashtags.push("#Independiente");
}catch(e){}
try{
hashtags.push("Cerati");
}catch(e){}
try{
hashtags.push("#RiverHoyQuieroOtraAlegria");
}catch(e){}
if(true){
new CMSTwitter({
sendButton : '#Object_169_29 .sendtag',
textSource : '#Object_169_29 input',
tplId : 'tweet-multiple-tpl',
term : hashtags,
tweetsContainer : '.tweets-slider',
via : 'minutounocom',
hashtagClass : 'hashtagNew',
hashtagSelectedClass : 'hashtagselectNew',
hashtagsContainer : '#Object_169_29 .hashtags-container',
perPage : 3,
timeout : 15,
root : '#Object_169_29'
});
}