HEX
Server: Apache
System: Linux hc1-wd209-6459bb5d78-7wsj2 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
User: w5726 (15726)
PHP: 7.3.33
Disabled: apache_child_terminate,apache_setenv,define_syslog_variables,diskfreespace,disk_free_space,disk_total_space,dl,exec,leak,link,openlog,passthru,pfsockopen,popen,posix_getgrnam,posix_getpgid,posix_getpwuid,posix_getpwnam,posix_getrlimit,posix_initgroups,posix_kill,posix_mkfifo,posix_mknod,posix_setpgid,posix_setsid,posix_setuid,posix_uname,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,putenv,readlink,register_tick_function,shell_exec,show_source,symlink,syslog,system
Upload Files
File: /data/web/virtuals/5726/virtual/www/wp-content/plugins/wassup/js/wassup.js
/**
 * wassup.js - Some common javascripts used in Wassup
 *  @since v1.9 (2015-10-05)
 */
var actionparam="";		//for Wassup ajax actions
var _countDowncontainer="0";	//for Detail/Online refresh countdown
var _currentSeconds=0;
var tickerID=0;
var selftimerID=0;
function ActivateCountDown(strContainerID, initialValue){
	_countDowncontainer=document.getElementById(strContainerID);
	SetCountdownText(initialValue);
	tickerID=window.setInterval("CountDownTick()",1000);
	selftimerID=setTimeout('wSelfRefresh()',initialValue*1000+2000);
}
function CountDownTick(){
	if(_currentSeconds >0){SetCountdownText(_currentSeconds-1);}
	else{clearInterval(tickerID);tickerID=0;}
}
function SetCountdownText(seconds){
	_currentSeconds=seconds;
	var strText=AddZero(seconds);
	if(_countDowncontainer){_countDowncontainer.innerHTML=strText;}
}
function AddZero(num){return((num >= "0")&&(num < 10))?"0"+num:num+"";}
//for Options screen navigation
function wScrollTop(){document.body.scrollTop=document.documentElement.scrollTop=0;}