// F.F.D Team Script Auto Reload CBox // Release date: 2011-09-27 // More info: http://blogandtipsblog.blogspot.com/ // user defined variable // -------------------------------------------------------------------------------------- // var fdsarc_timeSet=30; // var cboxmain_height=270; // var cboxform_height=90; // var fdsarc_autoLoad=true; // var fdsarc_infoText='Auto-refresh:'; // var fdsarc_cboxmainID='http://www3.cbox.ws/box/?boxid=3319825&boxtag=9hzp17&sec=main'; // var fdsarc_cboxformID='http://www3.cbox.ws/box/?boxid=3319825&boxtag=9hzp17&sec=form'; // var fdsarc_onOptionText='ON'; // var fdsarc_onOptionTitle='Click to check automatically for new messages'; // var fdsarc_offOptionText='OFF'; // var fdsarc_offOptionTitle='Stop automatic checking for new messages'; // the script // -------------------------------------------------------------------------------------- var fdsarc_chatFrameName='cboxmain'; var fdsarc_showOption=true; // true or false (true:tampilkan tombol, false:sembunyikan) var fdsarc_loopRefresh; fdsarc_creditURL='http://betterfreedownload.blogspot.com/'; fdsarc_creditText='©F.F.D Team'; fdsarc_creditTitle='F.F.D Team'; function fdsarc_refresh() { fdsarc_messageBox=document.getElementsByName(fdsarc_chatFrameName)[0]; fdsarc_messageBox.src=fdsarc_messageBox.src; fdsarc_realTimeSet=fdsarc_timeSet*1000; fdsarc_loopRefresh=setTimeout('fdsarc_refresh()',fdsarc_realTimeSet); } function fdsarc_writeElement() { document.write('
'); document.write('
'); document.write('
'); document.write('
'); document.write('
'); document.write(''); document.write(''); document.write('
'+fdsarc_infoText+' '+fdsarc_onOptionText+' '+fdsarc_offOptionText+'
'); document.write(''); document.write(''); document.write(''); document.write('
'); document.write('
'); document.write('' +'#fdsarc_footer '+'{ display:none; } ' +'#fdsarc_footer,#fdsarc_footer td,#fdsarc_footer a '+'{ } ' +'#fdsarc_footer a,#fdsarc_footer a:visited '+'{ } ' +'#fdsarc_footer a:hover '+'{ } '); document.write(''); document.write(''); } function fdsarc_setOptionOn() { clearTimeout(fdsarc_loopRefresh); if (fdsarc_timeSet>=5) { fdsarc_refresh(); } else { fdsarc_timeSet=15; fdsarc_refresh(); } document.getElementsByName('fdsarc_OnOptionRadio')[0].checked=true; document.getElementsByName('fdsarc_OffOptionRadio')[0].checked=false; } function fdsarc_setOptionOff() { clearTimeout(fdsarc_loopRefresh); document.getElementsByName('fdsarc_OnOptionRadio')[0].checked=false; document.getElementsByName('fdsarc_OffOptionRadio')[0].checked=true; } function fdsarc_start() { fdsarc_writeElement(); if (fdsarc_showOption) { document.getElementById('fdsarc_optionDiv').style.display='block'; } else { document.getElementById('fdsarc_optionDiv').style.display='none'; } if (fdsarc_autoLoad) { fdsarc_setOptionOn(); } else { fdsarc_setOptionOff(); } } window.onload=fdsarc_start();