\n');
document.write(' \n');
document.write('\n');
document.write('\n');
if (flashState||FI) flash = "Flash Player precent."
else flash = "Flash Player missing."
if (realState||G2) real = "Real Player installed."
else real = "Real Player missing."
//--------------------End of module--------------------//
//------------------General info module----------------//
if (ie)
{
browname = "Microsoft Internet Explorer";
vscript = "VBScript present.";
avalW = screen.availWidth;
avalH = screen.availHeight;
langInfo();
}
else if (ns)
{
browname = "Netscape Navigator";
avalW = window.innerWidth;
avalH = window.innerHeight;
vscript = "VBScript missing.";
langInfo();
}
else if (dom)
{
browname = "Netscape 6 Gecko";
vscript = "VBScript missing.";
avalW = window.innerWidth;
avalH = window.innerHeight;
}
colors = screen.colorDepth;
resolution = ''+screen.width+' X '+screen.height+'';
//--------------------End of module--------------------//
function langInfo() // Detection of browser language
{
if (l.indexOf('en')>-1)language='English';
else if (l.indexOf('hu')>-1) language='Hungarian';
else if (l.indexOf('nl')>-1) language='Dutch';
else if (l.indexOf('fr')>-1) language='French';
else if (l.indexOf('de')>-1) language='German';
else if (l.indexOf('hu')>-1) language='Magyar';
else if (l.indexOf('ja')>-1) language='Japanese';
else if (l.indexOf('it')>-1) language='Italian';
else if (l.indexOf('pt')>-1) language='Portuguese';
else if (l.indexOf('ro')>-1) language='Roman';
else if (l.indexOf('es')>-1) language='Spanish';
else if (l.indexOf('sv')>-1) language='Swedish';
else if (l.indexOf('zh')>-1) language='Chinese';
else language='English';
}
boot = 'KERNEL Uncompressing~~...~~...~....~~~....~...~..Done. '
+ ' '
+ 'We Welcome it in the World of blackPanther! '
+ 'Booting..~~..~~..~..~.OK,~~ now booting the CheckSys.~~~ ' // Splitting string used for Linux-like interface
+'CheckSys version 1.04.21-01~~ (++@++) ~~# '+last+' '
+'Connecting to client\'s computer...~~...~....~~~....~...~..Done. '
+'Operation system found. '
+'Client\'s browser platform: '+navigator.platform+' '
+'Detected client browser.~~~ '
+'Getting browser name.......Browser name:~~ '+navigator.appCodeName+' '
+'Decoding and ajusting browser name........Successful. '
+'Common browser name: '+browname+' '
+'Getting browser version..~...~..~~~..Done. '
+'Browser version: '+navigator.appVersion+' '
+'Checking browser history...........OK '
+''+historyP+' PAGES found in browser history.~~ '
+'Autodetecting JavaScript..~.~.~.~.~..~.~.~.~.~.Done. '
+''+jscript+' '
+'Looking for VBScript.~.~.~..~~..~.~..~.Done '
+''+vscript+' '
+'Examining cookies.~.~.~..~~..~.~..~. '
+''+cookie+' '
+'Logging in for additional information.~.~..~.~..~...~.Successfull. '
+'Extracting client\'s date information...~. '
+'Date: '+dateP+'~~~~ '
+'Language present in browser....~~...~..~.'+language+' '
+'Screen resolution set to '+resolution+' '
+'Getting color depth....~....~...~...'+colors+' bit '
+'Estimating available browser space....~..~.~..Done. '
+'Browser available width: '+avalW+' pixels '
+'Browser available height: '+avalH+' pixels '
+'Entering inside for plugins information. '
+'Looking for Real Player.~~.~.~.~.~.~.~.~.~.~.~.Done. '
+''+real+' '
+'Checking for Macromedia FLASH player.~.~.~.~.~.~.~.~.~.~.Done. '
+''+flash+' '
+'CheckSys operation complete.~~~ '
+'Now redirecting to proper web page~.~...~.~..~...~OK.~~~ ';
seq = boot.split("~"); // Spliting the string
function initCheck() // The Linux-like boot simulation function
{
seq1=''+seq2+''+seq[num]+'';
seq2+=seq[num];
if(ns)
{
with(document.out.document.indoor)
{
document.write(seq1);
document.close();
}
}
if(ie) booty.innerHTML = seq1;
if(dom) document.getElementById("booty").innerHTML = seq1;
if (!(num>=seq.length-1))
{
num++;
down();
window.status=precent+"% complete.";
if (precent<100)precent++;
else window.status="Checking completed."
setTimeout('initCheck()',1);
}
else window.location.replace(place);
}
function down() // Scrolling down function
{
b+=100;
window.scroll(0,a);
a=setTimeout("down()",1000);
}
onload=initCheck;
//-->
|