You are on page 1of 16

<?xml version='1.0' encoding='utf-8' ?

>
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en"
"http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>
furl | your favorite bookmarked urls, fast. furl.it!
</title>
<script type="text/javascript">
//<![cdata[
function itemid(elem){
return elem.parents('.fbomb').attr('id').substring(5);
}

function emailitem(item_id) {
window.open('/items/email_items?items=' +
item_id,'','width=590,height=540,left=75,top=20,resizable=yes,scrollbars=yes');
}

function spam(item_id){
path = '/item/' + item_id + '/report_as_spam'
$.post(path, {}, function (text) {
closealldroppops();
alert(text);
});
}
//]]>
</script>
<meta content='width = device-width' name='viewport' />
<link href='/images/logo-favicon.ico' rel='shortcut icon' />
<link href='/images/logo-appletouch.png' rel='apple-touch-icon' />
<link href='/sites/furl/toolbar/furl_opensearch_plugin.xml' rel='search'
title='furl.net' type='application/opensearchdescription+xml' />
<link href="/stylesheets/cache/bundle_o_style.css?1211489873" media="screen"
rel="stylesheet" type="text/css" />
<!-- / can't bundle anything conditional -->

<script src="/javascripts/cache/bundle_o_javascript.js?1211489875"
type="text/javascript"></script> <!--
/ can't bundle anything conditional or dynamically generated like furl_it
-->

<script type="text/javascript">
//<![cdata[
function editcheckeditems(path, description){
batchitemedit(path, description, checkedidarray());
}

function edititem(path, description, itemid, target){


batchitemedit(path, description, [itemid], target);
}

function batchitemedit(path, description, ids, target){


if(selectedsomething(ids) && confirm("are you sure you want to " +
description + "?")){
$.post(path, {'entries[]': ids}, function (xml) {
if (target == undefined){
clearallchecks();
clearallselects();
window.location.reload();
}
else {
window.location = target;
}
});
}
}

function markcheckeditems(operation){
editcheckeditems('/my/archive/mark?mark=' + operation, 'mark these items
as ' + operation);
}

function markitem(operation, itemid){


edititem('/my/archive/mark?mark=' + operation, 'mark this item as ' +
operation, itemid);
}

// get an array of ids of currently checked off items


function checkedidarray() {
out = []
$(".itemcheckbox").each(function() {
if ($(this).is(':checked')){
out.push($(this).attr('value'));
}
});

return out;
}

function checkallchecks(){
$(".itemcheckbox").each(function() {
$(this).attr('checked', 'checked');
//$(this).prev().attr('src', "/images/icon-check-checked.png");
});
}

function clearallchecks(){
$(".itemcheckbox").each(function() {
$(this).attr('checked', false);
//$(this).prev().attr('src', "/images/icon-check-unchecked.png");
});
}

function clearallselects() {
$("select.topic, select.group").each(function() {
$(this).attr('selectedindex', 0);
});
}

function selectedsomething(ar) {
if(ar.length == 0){
alert("please select something first using the checkboxes");
return false;
} else {
return true;
}
}

function emailitems(ids){
if(selectedsomething(ids)){
sendemail('/items/email_items?items=' + ids.join(','));
}
return false;
}

function emailurls(ids){
if(selectedsomething(ids)){
sendemail('/urls/email_urls?urls=' + ids.join(','));
}
return false;
}

function sendemail(args) {
window.open(args,'','width=590,height=525,left=75,top=20,resizable=yes,s
crollbars=yes');
}
//]]>
</script>

<script type="text/javascript"><!--
google_ad_client = "pub-6633695757439761";
google_alternate_color = "000000";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_channel = "1914552683";

google_page_url = "http://911review.org/alex/data-mining-death-1.html"

google_color_border = "e25b14";
google_color_bg = "ffffff";
google_color_link = "72523e";
google_color_url = "555555";
google_color_text = "cccccc";
google_ui_features = "rc:6";
//--></script>
<script type="text/javascript">
$(document).ready(function(){

(function($) { // wrapper to make sure that the $ is used by jquery and


wasn't taken over by another library

// move flash inside of content header and show, if present


$('#flash').appendto('.content-header:first').show();

// fix dotted lines around firefox links


// http://www.crismancich.de/jquery/plugins/linkscrubber/
$(document).ready(function(){$("a").bind("focus",function(){if(this.blur
)this.blur();});});
// drop pops

// add iframes to mask backgrounds (specifically selects) for ie6


// see http://www.hedgerwow.com/360/bugs/css-select-free.html
$(".droppop").append("<!--[if lte ie 6.5]><iframe></iframe><![endif]--
>");

// watch body for clicks and shut any open, non-active pops
$(document.body).click(function() { closenonactivedroppops(); });

// add events to droppopcontainers


$('div.droppopcontainer').mouseover(function() { activedroppop =
$(".droppopcontainer").index(this); });
$('div.droppopcontainer').mouseout(function() { activedroppop =
null; });

// add events to droppoplinks


$('.droppoplink').click(function() { toggledroppop($(this)); });

var tehsiz = $('div.droppopcontainer').size() + 1000;

// give droppopcontainers reverse zindexes, so pops pop up over those


that follow
$("div.droppopcontainer").each(function(i) {
var zin = tehsiz - i;
$(this).css({ zindex: zin });
});

})(jquery); // end of the function wrapper to make sure the $ goes to


jquery and not another library

// toggle filters
$("a.toggle-text").click(function() {
if ($(this).text() == 'what other members say'){
$(this).text("see what other members say");
$(this).removeclass("toggled");
$("div.toggle-container").hide();
createcookie('memberdescriptiontoggle', "true", 365);
} else {
$(this).text("what other members say");
$(this).addclass("toggled");
createcookie('memberdescriptiontoggle', "false", 365);
$(".toggle-container").show();
}
return false;
});
// toggle filters with cookie
var toggled = readcookie('memberdescriptiontoggle');
if (toggled == 'false' || toggled == undefined) {
$("a.toggle-text").text("what other members say");
$("a.toggle-text").addclass("toggled");
$(".toggle-container").show();
$("div.content-header").css("borderbottom","none");
}else{
$("a.toggle-text").text("see what other members say");
$("a.toggle-text").removeclass("toggled");
$(".toggle-container").hide();
}

});
</script>
</head>
<body class='items-show detail'>
<div class='container'>

<div class='header'>
<h5 class='logo'>
<a href='/' title='furl'>furl</a>
</h5>
<form action='/search' id='search' method='get' name='mainform'>
<input name='enc' type='hidden' value='utf-8' />
<input name='chn' type='hidden' value='front' />
<input class='entry' maxlength='150' name='keyword' type='text' />
<input class='button' src='/images/icon-search.png' type='image'
value='search' />
</form>
<div class='menu'>
<a class='closedroppops' href='/members/login'
onmouseover='closealldroppops();' title='log in'>log in</a>
<span class='separator'>&middot;</span>
<a class='closedroppops' href='/signups/new'
onmouseover='closealldroppops();' title='sign up'>sign up</a>
<span class='separator'>&middot;</span>
<div class='droppopcontainer'>
<p class='droppoplink'>
<a href='javascript:void(0)' title='explore'>explore</a>
</p>
<div class='droppop popleft shiftcentered'>
<ul>
<li>
<a class='most popular' href='/urls/popular' title='most
popular'>most popular</a>
</li>
<li>
<a class='latest headlines' href='/items' title='latest
headlines'>latest headlines</a>
</li>
<li>
<a class='find a member' href='/members/search' title='find a
member'>find a member</a>
</li>
<li>
<a class='tell a friend' href='/talk/tell' title='tell a
friend'>tell a friend</a>
</li>
<li>
<a class='furl blog' href='http://blogs.looksmart.com/furl'
title='furl blog'>furl blog</a>
</li>
</ul>
</div>
</div>
<span class='separator'>&middot;</span>
</div>
<div class='clear'>
</div>
</div>
<div class='content iteminfo'>
<div class='content-header'>
<div class='droppopcontainer fbomb' id='fbomb31576558'>
<a class='droppoplink fbomblink' href='javascript:void(0)'>&nbsp;</a>
<div class='droppop popleft fbombdrop'>
<span class='close' onclick='closealldroppops();'> <a>close</a>
</span>
<div class='section item-links'>
<h5>visit this url</h5>
<ul>
<li><a href="/item/31576558/forward">source</a></li>
<li class='last'><a href="/item/31576558">detail</a></li>
</ul>
<div class="clear"></div>
</div>
<div class='section'>
<h5>manage this url</h5>
<ul>
<li>
<a class='furlit' onclick="furlit('part1 - duncan + blake
death: mediabistro.com, data mining & the cia', 'http://911review.org/alex/data-
mining-death-1.html');closealldroppops();" title='furl it'>furl it</a>
</li>
<li>
<a class='spam' onclick='spam(31576558);' title='report as
spam'>report as spam</a>
</li>
</ul>
</div>
<div class='section'>
<h5>share this url</h5>
<ul>
<li>
<a class='email' onclick='emailitems([itemid($(this))]);
return false;' title='email'>email this item</a>
</li>
<li>
<div class='short'>
short url
<input type='text' value='http://furl.it/go/6oypw' />
</div>
</li>
</ul>
</div>
</div>
</div>
<h1>
<a href="http://911review.org/alex/data-mining-death-1.html">part1 -
duncan + blake death: mediabistro.com, data mining &amp; the cia</a>
</h1>
<div class='clear'>
</div>
</div>
<div class='content-body'>
<div class='sourceurl'>
<input class='copy entry' type='text'
value='http://911review.org/alex/data-mining-death-1.html' />
<span>
<a href="/url/11242436/forward">go</a>
</span>
<div class='clear'>
</div>
</div>

<div class='saved'>
<h2 class='arrow'>saved</h2>
<div class='saved-body'>
<h3>
911review's archive on mar 16, 2008
</h3>
<div class='item'>
<div class='item-meta'>
<p>
<span class='rating'>
<img alt="icon-star-orange" src="/images/icon-star-
orange.gif?1211489844" /><img alt="icon-star-orange" src="/images/icon-star-
orange.gif?1211489844" /><img alt="icon-star-orange" src="/images/icon-star-
orange.gif?1211489844" /><img alt="icon-star-grey" src="/images/icon-star-
grey.gif?1211489844" /><img alt="icon-star-grey" src="/images/icon-star-
grey.gif?1211489844" />
</span>
<span class='viewcount'>
23 views
</span>
<span class='members'>
1 member
</span>
</p>
<p class='keyword'>
bank 9/11 hijackers terrorist flight plane world trade center
cia
</p>
<p class='topics'>
<a href="/member/911review?topic=politics">politics</a>; <a
href="/member/911review?topic=911">911</a>; <a
href="/member/911review?topic=9%2f11">9/11</a>; <a
href="/member/911review?topic=government">government</a>; <a
href="/member/911review?topic=terrorism">terrorism</a>; <a
href="/member/911review?topic=conspiracy">conspiracy</a>; <a
href="/member/911review?topic=cia">cia</a>; <a
href="/member/911review?topic=wtc">wtc</a>; <a href="/member/911review?topic=al-
queda">al-queda</a>; <a href="/member/911review?topic=bush">bush</a>; <a
href="/member/911review?topic=mobile">mobile</a>; <a
href="/member/911review?topic=president">president</a>; <a
href="/member/911review?topic=defense">defense</a>; <a
href="/member/911review?topic=computers">computers</a>; <a
href="/member/911review?topic=computer">computer</a>; <a
href="/member/911review?topic=software">software</a>; <a
href="/member/911review?topic=torture">torture</a>; <a
href="/member/911review?topic=world+trade+center">world trade center</a>
</p>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<div class='content-header'>

<div class='clear'>
</div>
</div>
<div class='content-body'>
<div class='explore'>
<h2 class='arrow'>explore this url</h2>
<div class='explore-body'>
<h3 class='furled_by_count'>
furled by <span>1 member</span>
</h3>
<h4 class='furled_first'>
first saved by <a href="/member/911review"
class="user_link">911review</a> on <span>mar 16, 2008</span>
</h4>
<!-- don't duplicate the representative comment -->
<div class='without-comments'>
<h5>saved without comments by</h5>
<p>
<a href="/member/911review" class="user_link">911review</a>
</p>
</div>
<div class='published_as'>
<h5>source url published as:</h5>
<h3>part1 - duncan + blake death: mediabistro.com,...</h3>
</div>
<div class='twocol'>
<div class='topics twocol2'>
<h5>community topics</h5>
<p>

</p>
</div>
<div class="clear"></div>

<div id="google-banner-sm">
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>

<div class='item-footer'>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</div>
</div>
<div class="clear"></div>
</div>
<!--
/ can't bundle anything conditional or dynamically generated like furl_it
-->
<script src="/tools/furl_it.js" type="text/javascript"></script>
<div class='footer'>
<div class='footer-menu'>

<div class='inline-menu'>
<h3>explore</h3>
<ul class='inline'>
<li>
<a class='most popular' href='/urls/popular' title='most
popular'>most popular</a>
</li>
<li>
<a class='latest headlines' href='/items' title='latest
headlines'>latest headlines</a>
</li>
<li>
<a class='find a member' href='/members/search' title='find a
member'>find a member</a>
</li>
<li>
<a class='tell a friend' href='/talk/tell' title='tell a
friend'>tell a friend</a>
</li>
<li>
<a class='furl blog' href='http://blogs.looksmart.com/furl'
title='furl blog'>furl blog</a>
</li>
<li class='clear'>
</li>
</ul>
<div class='clear'>
</div>
</div>

<div class='inline-menu'>
<h3>help</h3>
<ul class='inline'>
<li>
<a class='how people use furl' href='/doc/uses' title='how people
use furl'>how people use furl</a>
</li>
<li>
<a class='features' href='/doc/features'
title='features'>features</a>
</li>
<li>
<a class='our commitment' href='/doc/commitment' title='our
commitment'>our commitment</a>
</li>
<li>
<a class='faq' href='/doc/faq' title='faq'>faq</a>
</li>
<li>
<a class='feedback' href='/talk/contact'
title='feedback'>feedback</a>
</li>
<li>
<a class='report a bug' href='/talk/report' title='report a
bug'>report a bug</a>
</li>
<li class='clear'>
</li>
</ul>
<div class='clear'>
</div>
</div>
</div>
<p class='looksmart'>
<span class='copyright'>
copyright
<a href='javascript:void(0)'
onclick="$('#page_stats').show();">&copy;</a>
2008
<a href='http://www.looksmart.com' title='looksmart, ltd.'>looksmart,
ltd.</a>
<span class='separator'>&middot;</span>
</span>
<span class='menu'>
<a href="/doc/about?class=popout">about us</a>
<span class='separator'>&middot;</span>
<a href="/doc/privacy">privacy policy</a>
<span class='separator'>&middot;</span>
<a href="/doc/terms">terms of service</a>
<span class='separator'>&middot;</span>
<a href='http://looklistings.looksmart.com/' title='advertise with
us'>advertise with us</a>
</span>
</p>
<p class='stats' id='page_stats'>
<span class='stopwatch'>
<strong>page processed in</strong>
1.066105
sec.
</span>
<span class='host'>
<strong>host:</strong>
web6
2 #2-m23
</span>
<span class='pid'>
<strong>pid:</strong>
12053
</span>
</p>
</div>
<!--websidestory code hbx2.0 (universal)-->
<!--copyright 1997-2005 websidestory,inc. all rights reserved. u.s.patent no.
6,393,479b1. more info:http://websidestory.com/privacy-->

<!-- missing cases for request.requesturi == error -->


<script language="javascript" type="text/javascript">
<!--
function hbxstrip(a) {
a = a.replace( /['"&!#$%\^\*:!\\<>~;]/g, "");
a = a.replace(/[" "]/g, "+");
return a;
}
// -->

var _hbec=0,_hbe=new array;function _hbevent(a,b){b=_hbe[_hbec++]=new


object();b._n=a;b._c=0;return b;}
var hbx=_hbevent("pv");hbx.vpc="hbx0200u";hbx.gn="ehg-looksmart.hitbox.com";

// begin editable section

// configuration variables
hbx.acct="dm57011484ew61en3";
hbx.pn=hbxstrip(document.title);
hbx.mlc="content+category";
hbx.pndef="title";
hbx.ctdef="full";

// configuration variables for search pages

// end search pages config


</script>

<script language="javascript1.1" type="text/javascript">


//hbx.js,hbx2.0,copyright 1997-2006 websidestory,inc. all rights reserved.
u.s.patent no.6,393,479b1 & 6,766,370. info:http://websidestory.com/privacy
/* insert custom event code here */
// custom code for 2.0 release to send linkviews on page view until the
backend is ready
// remove this code block if we want to send linkviews as a separate request
function _hbonprepv(req){
for(var a=0;a<_il(document.links);a++){
if(_lvid.length+_lvpos.length<_lvm)
_lv(document.links[a]);
else break;
}
_ar += "&lv.id="+_lvid+"&lv.pos="+_lvpos;
_lvl=-1;
}

/* do not change below this line */


var _vjs="hbx0201.03u";
var
_dl=".exe,.zip,.wav,.wmv,.mp3,.mov,.mpg,.avi,.doc,.pdf,.xls,.ppt,.gz,.bin,.hqx,.dm
g";
function _na(a){return new array(a?a:0)}
var
_mn=_hbq="",_hba=_na(),_hud="undefined",_huf="function",_ec=_if=_ll=_hec=_hfs=_hfc
=_hfa=_ic=_pc=_fc=_pv=0,_hbi=_hbs=new image(),_hbin=_na(),_pa=_na();
_lvid=_lvpos=_lvl="";_hbe=_d("hbe")?_hbe:"";_hbec=_d("hbec")?_hbec:0;var
_ex="expires=wed, 1 jan 2020 00:00:00 gmt",_lvm=300,_lidt="lid",_lpost="lpos",
_pum=_erf=_hif=0;
function _d(v){return(typeof
eval("window._"+v)!=_hud)?eval("window._"+v):""}function _dd(v){return(typeof
v!=_hud)?1:0}
function _a(v,c){return escape((_d("lc")=="y"&&_dd(c))?_tl(v):v)}
function _b(){return 0}function _gp(){return
(_il(_d("protocol"))>0)?_protocol+"://":(location.protocol=="https:"?"https://":"h
ttp://")}
function _ic(a,b,c){return a.charat(b)==c?1:0}function _ii(a,b,c){return
a.indexof(b,c?c:0)}function _il(a){return a!=_hud?a.length:0}
function _if(a,b,c){return a.lastindexof(b,c?c:_il(a))}function
_ip(a,b){return a.split(b)}
function _is(a,b,c){return b>_il(a)?"":a.substring(b,c!=null?c:_il(a))}
function _rp(a,b,c,d){d=_ii(a,b);if(d>-
1){a=_rp(_is(a,0,d)+","+_is(a,d+_il(b),_il(a)),b,c)}return a}
function _tl(a){return a.tolowercase()}function _ts(a){return
a.tostring()}function _tv(){_hbsend()}function _sv(a,b,c){_hbset(a,b,c)}
function
_vs(a,b,c,d){c=['c','p','r'];for(d=0;d<_il(c);d++){if(_ii(""+b,"_"+c[d]+"::")==0)b
=eval("_r"+c[d]+"v(_is(b,4,_il(b)))")}eval("_"+a+"='"+b+"'")}
function
_vc(a,b,c,d){b=_ip(a,",");for(c=0;c<_il(b);c++){d=_ip(b[c],"|");_vs(d[0],(_d(d[0])
)?_d(d[0]):d[1]?d[1]:"")}}
function _vl(a,b){for(a=0;a<_hbec;a++){_pv=_hbe[a];if(_pv._n=="pv"){for(b in
_pv){if(_ee(b)&&typeof _pv[b]!=_huf){_vs(b,_pv[b])}}}}
_vc("pn|put+page+name+here,mlc|content+category,elf|n,dlf|n,dft|n,pndef|
title,ctdef|full,cp|null,hcn|")}_vl();
function
_er(a,b,c){if(_erf++==0)_hbi.src=_gp()+_gn+"/hg?hc="+_mn+"&hb="+_a(_acct)+"&hec=1&
vjs="+_vjs+"&vpc=err&ec=1&err="+
((typeof a=="string")?_a(a+"-"+c):"unknown");_xt("error",a);}
function _ee(a){return(a!="_n"&&a!="_c")?1:0}_ev(window,"error",_er);
function _hbsend(c,a,i){a="";_hec++;for(i in _hba)if(typeof
_hba[i]!=_huf)a+="&"+i+"="+_hba[i];_q(_hbq+"&hec="+_hec+a+_hbsendev());_hba=_na()}
function _hbset(a,b,c,d,e){d=_ii(_hbq,"&"+a+"=");if(d>-
1){e=_ii(_hbq,"&",d+1);e=e>d?e:_il(_hbq);if(a=="n"||
a=="vcon"){_hbq=_is(_hbq,0,d)+"&"+a+"="+b+
_is(_hbq,e);_hec=-
1;if(a=="n"){_pn=b}else{_mlc=b}}else{_hbq=_is(_hbq,0,d)+_is(_hbq,e)}}if((a!="n")&&
(a!="vcon"))_hba[a]=(c==0)?b:_a(b)}
function
_hbredirect(a,b,c,d,e,f,g){_sv("n",a);_sv("vcon",b);if(_dd(d)&&_il(d)>0){d=_ic(d,0
,"&")?_is(d,1,_il(d)):d;e=_ip(d,"&");for(f=0;f<_il(e);
f++){g=_ip(e[f],"=");_sv(g[0],g[1])}}_tv();if(c!=""){_sv("hec",0);settimeout("
location.href='"+c+"'",500)}}
function
_hbsendev(a,b,c,d,e,f,x,i){a='',c='',e=_il(_hbe);for(b=0;b<e;b++){c=_hbe[b];for(va
r d in c){if(_ee(d)&&c[d].match){x=c[d].match(/\[\]/g);
if(x!=null&&_il(x)>c._c)c._c=_il(x)}}for(d in
c){if(_ee(d)&&c[d].match){x=c[d].match(/\[\]/g);x=(x==null)?0:_il(x);for(i=x;i<c._
c;i++)c[d]+="[]"}}}
for(b=0;b<e;b++){c=_hbe[b];for(f=b+1;f<e;f++){if(_hbe[f]!=null&&c._n==_hbe[f].
_n){for(d in c){if(_ee(d)&&_hbe[f]!=null)c[d]+="[]"+_hbe[f][d];
_hbe[f][d]=""}}}for(d in
c){if(_ee(d)&&c._n!=""&&c._n!="pv"){a+="&"+c._n+"."+d+"="+_rp(_a(c[d]),"%5b%5d",",
")}}}_hbe=_na();_hbec=0;return a}
function _hbm(a,b,c,d){_sv('n',a);_sv('vcon',b);if(_il(c)>0)_sv(c,d);_tv()}
function _hbpageview(p,m){_hec=-1;_hbm(p,m,"")}function
_hbexitlink(n){_hbm(_pn,_mlc,"el",n)}function
_hbdownload(n){_hbm(_pn,_mlc,"fn",n)}
function
_hbvisitorseg(n,p,m){_sv("n",p);_sv("vcon",m);_sv("seg",n,1);_tv()}function
_hbcampaign(n,p,m){_hbm(p,m,"cmp",n)}
function _hbfunnel(n,p,m){_hbm(p,m,"fnl",n)}function
_hbgoalpage(n,p,m){_hbm(p,m,"gp",n)}
function
_hblink(a,b,c){_sv("lid",a);if(_dd(b))_sv("lpos",b);_xt("link","");_tv()}
function
_hbform(a,b,c,d,e,f){if(_dd(c))_hlf=c;_hfs=0,_fa=1,f='complete',_hfa=0;if(a==0){f=
'abandon';_hfa=1}_xt("form"+f,b)}
function
_hbcookie(a,b,c){document.cookie=a+"="+b+";path=/;"+((_dd(c)==1)?"expires="+c:"")}
function _le(a,b,c,d,e,f,g,h,i,j,k,l){b="([0-9a-za-z\\-]
*\\.)",c=location.hostname,d=a.href,h='',i='';eval("__f=/"+b+"*"+b+"/");if(_dd(__f
)){__f.exec(c);
j=(_dd(_elf))?_elf:"";if(j!="n"){if(_ii(j,"!")>-
1){h=_is(j,0,_ii(j,"!"));i=_is(j,_ii(j,"!")+1,_il(j))}else{h=j}}k=0;if(_dd(_elf)&&
_elf!="n"){
if(_il(i)){l=_ip(i,",");for(g=0;g<_il(l);g++)if(_ii(d,l[g])>-
1)return}if(_il(h)){l=_ip(h,",");for(g=0;g<_il(h);g++)if(_ii(d,l[g])>-1)k=1}}
if(_ii(a.hostname,regexp.$2)<0||k){ e=_il(d)-1;return
_ic(d,e,'/')?_is(d,0,e):d}}}
function
_ld(a,b,c,d,e,f){b=a.pathname,d='',e='';b=_is(b,_if(b,"/")+1,_il(b));c=(_dd(_dlf))
?_dlf:"";if(c!="n"){if(_ii(c,"!")>-1){d=","+
_is(c,0,_ii(c,"!"));e=","+_is(c,_ii(c,"!")+1,_il(c))}else{d=","+c}}f=_ii(b,"?"
);b=(f>-1)?_is(b,0,f):b;if(_if(b,".")>-1){f=_is(b,_if(b,"."),_il(b));
if(_ii(_dl+d,f)>-1&&_ii(e,f)<0){var
dl=b;if(_dd(_dft)){if(_dft=="y"&&a.name){dl=a.name}else
if(_dft=="full"){dl=a.pathname;if(!_ic(dl,0,'/'))dl='/'+dl
}}return dl}}}
function
_lp(a,b){for(b=0;b<_il(a);b++){if(_il(_lvl)<_lvm)_lv(a[b]);_ev(a[b],'mousedown',_l
t)}}
function
_lv(a,b,c){b=_ln(a);c=b[0]+b[1];if(_il(b[0])){_lvid+=_a(b[0])+",";_lvpos+=_a(b[1])
+",";_lvl+=c}}
function
_ln(a,b,c,d){b=a.href;b+=a.name?a.name:"";c=_lvp(b,_lidt);d=_lvp(b,_lpost);return[
c,d]}
function _lt(e){if((e.which&&e.which==1)||(e.button&&e.button==1)){var
a=document.all?window.event.srcelement:this;for(var i=0;i<4;i++){if(a.tagname&&
_tl(a.tagname)!="a"&&_tl(a.tagname)!="area"){a=a.parentelement}}var
b=_ln(a),c='',d='';a.lid=b[0];a.lpos=b[1];if(_d("lt")&&_lt!="manual"){if((a.tagnam
e&&
_tl(a.tagname)=="area")){if(!_il(a.lid)){if(a.parentnode){if(a.parentnode.name
)a.lid=a.parentnode.name;else a.lid=a.parentnode.id}}if(!_il(a.lpos))
a.lpos=a.coords}else{if(_il(a.lid)<1)a.lid=_ls(a.text?a.text:a.innertext?a.inn
ertext:"");if(!_il(a.lid)||_ii(_tl(a.lid),"<img")>-1)a.lid=_li(a)}}
if(!_il(a.lpos)&&_d("lt")=="auto_pos"&&a.tagname&&_tl(a.tagname)!="area"){c=do
cument.links;for(d=0;d<_il(c);d++){if(a==c[d]){a.lpos=d+1;break}}}
var _f=0,j='',k='',l=(a.protocol)?_tl(a.protocol):"";
if(l&&l!="mailto:"&&l!="javascript:"){j=_le(a),k=_ld(a);if(_dd(k))a.fn=k;else
if(_dd(j))a.el=j}
if(_d("lt")&&_ic(_lt,0,"n")!=1&&_dd(a.lid)&&_il(a.lid)>0){_sv("lid",a.lid);if(
_dd(a.lpos))_sv("lpos",a.lpos);_f=1}if(_dd(a.fn)){_sv("fn",a.fn);_xt("download",a)
;_f=2}
else
if(_dd(a.el)){_sv("el",a.el);_xt("exitlink",a);_f=1}if(_f>0){_xt("link",a);_tv()}}
}
function _lvp(a,b,c,d,e){c=_ii(a,"&"+b+"=");c=c<0?_ii(a,"?"+b+"="):c;if(c>-
1){d=_ii(a,'&',c+_il(b)+2);e=_is(a,c+_il(b)+2,d>-1?d:_il(a));
if(!_ec){if(!(_ii(e,"//")==0))return e}else return e}return ""}
function _li(a){var b=""+a.innerhtml,bu=_tl(b),i=_ii(bu,"<img");if(bu&&i>-
1){eval("__f=/ src\s*=\s*['\"]?([^'\" ]+)['\"]?/i");__f.exec(b);
if(regexp.$1)b=regexp.$1}return b}
function _lsp(a,b,c,d){d=_ip(a,b);return d.join(c)}
function
_ls(a,b,c,d,e,f,g){c=_d("lim")?_lim:100;b=(_il(a)>c)?_a(_is(a,0,c)):_a(a);b=_lsp(b
,"%0a","%20");b=_lsp(b,"%0d","%20");b=_lsp(b,"%09","%20");
c=_ip(b,"%20");d=_na();e=0;for(f=0;f<_il(c);f++){g=_rp(c[f],"%20","");if(_il(g
)>0){d[e++]=g}}b=d.join("%20");return unescape(b)}
function
_em(a,b,c,d){a=_d("fv");b=_ii(a,";"),c=parseint(a);d=3;if(_tl(a)=="n"){d=999;_fv="
"}else if(b>-1){d=_is(a,0,b);_fv=_is(a,b+1,_il(a))}
else if(c>0){d=c;_fv=""}return d}
function _ff(e){var a=(_bnn)?this:_evo(e);_hlf=(a.lf)?a.lf:""}
function
_fu(e){if(_hfs==0&&_il(_hlf)>0&&_fa==1){_hfs=1;if(_hfc&&!_hfa){_sv("sf","1");_xt("
formcomplete",_hfc)}else if(_il(_hlf)>0){_sv("lf",_hlf);_xt("formabandon",_hlf)}
_tv();_hlf="",_hfs=0,_hfc=0}}
function _fo(e){var
a=true;if(_dd(this._fs))eval("try{a=this._fs()}catch(e){}");if(a!=false)_hfc=1;ret
urn a}
function _fa(a,b,c,d,e,f,g,h,i,ff,fv,s){b=a.forms;ff=new
object();f=_em();for(c=0;c<_il(b);c++){ff=b[c],d=0,s=0,e=ff.elements;
g=ff.name?ff.name:"forms["+c+"]";for(h=0;h<_il(e);h++){if(e[h].type&&"hiddenbu
ttonsubmitimagereset".indexof(e[h].type)<0&&d++>=f)break}if(d>=f){_fa=1;
for(h=0;h<_il(e);h++){i=e[h];if(i.type&&"hiddenbuttonsubmitimagereset".indexof
(i.type)<0){i.lf=g+".";i.lf+=(i.name&&i.name!="")?i.name:"elements["+h+"]";
_ev(i,"focus",_ff)}}ff._fs=null;ff._fs=ff.onsubmit;if(_dd(ff._fs)&&ff._fs!=nul
l){ff.onsubmit=_fo}else if(!(_bnn&&_bv<5)&&_hm&&!(_bni&&!_i5)){if((!_bni)||
(_ii(navigator.useragent,"opera")>-
1)){ff.onsubmit=_fo}else{_ev(ff,"submit",_fo);
eval("try{document.forms["+c+"]._fs=document.forms["+c+"].submit;document.form
s["+c+"].submit=_fo;throw ''}catch(e){}")}}}}}
function _gr(a,b,c,d){if(!_d("hrf"))return a;if(_ii(_hrf,"http",0)>-1)return
_hrf;b=window.location.search;b=_il(b)>1?_is(b,1,_il(b)):"";
c=_ii(b,_hrf+"=");if(c>-1){
d=_ii(b,"&",c+1);d=d>c?d:_il(b);b=_is(b,c+_il(_hrf)+1,d)}return(b!=_hud&&_il(b)>0)
?b:a}
function
_po(a,b,c,d,e,f,g){d=location,e=d.pathname,f=_is(e,_if(e,"/")+1),g=document.title;
if(a&&b==c){return(_pndef=="title"&&g!=""&&g!=d&&
!(_bnn&&_ii(g,"http")>0))?g:f?f:_pndef}else{return b==c?(e==""||
e=="/")?"/":_is(e,(_ctdef!="full")?_if(e,"/",_if(e,"/")-2):_ii(e,"/"),_if(e,"/"))
:(b=="/")?b:((_ii(b,"/")?"/":"")+(_if(b,"/")==_il(b)-1?_is(b,0,_il(b)-1):b))}}
function _pp(a,b,c,d){return ""+(c>-
1?_po(b,_is(a,0,c),d)+";"+_pp(_is(a,c+1),b,_ii(_is(a,c+1),";")):_po(b,a,d))}
_mlc=_pp(_mlc,0,_ii(
_mlc,";"),"content+category");_pn=_pp(_pn,1,_ii(_pn,";"),"put+page+name+here");
function _nn(a){return _d(a)!="none"}
function _e(a){var b="";var d=_ip(a,",");for(var
c=0;c<_il(d);c++)b+="&"+d[c]+"="+_a(_d(d[c]));return b}
function _f(a,b){return(!_ii(a,"?"+b+"="))?0:_ii(a,"&"+b+"=")}function
_g(a,b,c,d){var e=_f(a,b);if(d&&e<0&&top&&window!=top){e=_f(_tls,b);
if(e>-1)a=_tls};return(e>-1)?_is(a,e+2+_il(b),(_ii(a,"&",e+1)>-
1)?_ii(a,"&",e+1):_il(a)):c}
function _h(a,b,c){if(!a)a=c;if(_i5||
_n6){eval("try{_vv=_g(location.search,'"+a+"','"+b+"',1)}"+__c+"{}")}else{_vv=_g(l
ocation.search,a,b,1)}return unescape(_vv)}
function _i(a,b,c,d){__f=_is(a,_ii(a,"?"));if(b){if(_i5||
_n6){eval("try{_hra=_g(__f,_hqsr,_hra,0)}"+__c+"{}")}else{_hra=_g(__f,_hqsr,_hra,0
)}};
if(c&&!_hra){if(_i5||
_n6){eval("try{_hra=_g(location.search,_hqsp,_hra,1)}"+__c+"{}")}else{_hra=_g(loca
tion.search,_hqsp,_hra,1)}};
if(d&&!_hra)_hra=d;return _hra}function
_j(a,b,c,d){c=_ii(a,"cp=");d=_ii(a,b,c+3);return(c<0)?"null":_is(a,c+3,(d<0)?_il(a
):d)}
var
__r=".referrer",_rf=_a(eval("document"+__r)),_et=0,_oe=0,_we=0,_ar="",_hm=(!(_ii(n
avigator.useragent,"mac")>-1)),_tls="";
_bv=parseint(navigator.appversion);_bv=(_bv>99)?(_bv/100):_bv;var
__f,_hrat=_d("hra"),_hra="",__c="catch(_e)",_fa=0,_hlfs=0,_hoc=0,
_hlf='',_ce='',_ln='',_pl='',_bn=navigator.appname,_bn=(_ii(_bn,"microsoft")?_
bn:"msie"),_bnn=(_bn=="netscape"),_bni=(_bn=="msie"),
_hck="*; path=/; "+(_d("cpd")&&_d("cpd")!=""?(" domain=."+_d("cpd")+";
"):"")+_ex,_n6=(_bnn&&_bv>4),_i5=false,_ss="na",_sc="na",_sv=11,_cy="u",_hp="u",
_tp=_d("ptc");if(_bn=="msie"){var
_nua=navigator.useragent,_is=_ii(_nua,_bn),_if=_ii(_nua,".",_is);if(_if>_is)_i5=_n
ua.substring(_is+5,_if)>=5}
if(_n6||_i5)eval("try{_tls=top.location.search}catch(_e){}")
function
_pv(){_dcmpe=_h(_d("dcmpe"),_d("dcmpe"),"dcmpe");_dcmpre=_h(_d("dcmpre"),_d("dcmpr
e"),"dcmpre");_vv="";_cmp=_h(_d("cmpn"),_d("cmp"),"cmp");
_gp=_h(_d("gpn"),_d("gp"),"gp");_dcmp=_h(_d("dcmpn"),_d("dcmp"),"dcmp");if(_ii
(_cmp,"sfs-")>-1){document.cookie="hbcmp="+_cmp+"; path=/;"+
(_d("cpd")&&_d("cpd")!=""?(" domain=."+_d("cpd")+";
"):"")+_ex}if(_bni&&_bv>3)_ln=navigator.userlanguage;
if(_bnn){if(_bv>3)_ln=navigator.language;if(_bv>2)for(var
i=0;i<_il(navigator.plugins);i++)_pl+=navigator.plugins[i].name+":"};_cp=_d("cp");
if(location.search&&_tl(_cp)=="null")_cp=_j(location.search,"&");if(_ii(docume
nt.cookie,"cp=")>-1){
_ce="y";_hd=_j(document.cookie,"*");if(_tl(_hd)!="null"&&_cp=="null"){_cp=_hd}
else{document.cookie="cp="+_cp+_hck}}else{document.cookie="cp="+_cp+_hck;
_ce=(_ii(document.cookie,"cp=")>-
1)?"y":"n"};if(window.screen){_sv=12;_ss=screen.width+"*"+screen.height;_sc=_bni?s
creen.colordepth:screen.pixeldepth;
if(_sc==_hud)_sc="na"};_ra=_na();if(_ra.tosource||
(_bni&&_ra.shift))_sv=13;if(!(_bnn&&_bv<5)&&!_bni&&_hm)eval("try{throw
_sv=14}catch(e){}");
if((new
date()).todatestring)_sv=15;if(_hba.every)_sv=16;if(_i5&&_hm){if(_ii(""+navigator.
appminorversion,"privacy")>-1)_ce="p";
if(document.body&&document.body.addbehavior){document.body.addbehavior("#defau
lt#homepage");_hp=document.body.ishomepage(location.href)?"y":"n";
document.body.addbehavior("#default#clientcaps");_cy=document.body.connectiont
ype}};var _hcc=(_dd(_hcn))?_d("hcv"):"";if(!_d("gn"))_gn="ehg.hitbox.com";
if(_d("ct")&&!_d("mlc"))_mlc=_ct;_xt("prepvr","");_ar=_gp()+_gn+"/hg?hc="+_mn+
"&hb="+_a(_acct)+"&cd=1&hv=6&n="+_a(_pn,1)+"&con=&vcon="+_a(_mlc,1)+"&tt="
+_d("lt")+"&ja="+(navigator.javaenabled()?"y":"n")+"&dt="+(new
date()).gethours()+"&zo="+(new date()).gettimezoneoffset()+"&lm="+
date.parse(document.lastmodified)+(_tp?("&pt="+_tp):"")+_e((_bnn?"bn,":"")+"ce
,ss,sc,sv,cy,hp,ln,vpc,vjs,hec,pec,cmp,gp,dcmp,dcmpe,dcmpre,cp,fnl")
+"&seg="+_d("seg")+"&epg="+_d("epg")+"&cv="+_a(_hcc)+"&gn="+_a(_d("hcn"))+"&ld
="+_a(_d("hlt"))+"&la="+_a(_d("hla"))+"&c1="+_a(_d("hc1"))+"&c2="+
_a(_d("hc2"))+"&c3="+_a(_d("hc3"))+"&c4="+_a(_d("hc4"))+"&customerid="+_a(_d("
ci")?_ci:_d("cid"))+"&ttt="+_lidt+","+_lpost;
if(_i5||
_n6){eval("try{_rf=_a(top.document"+__r+")+''}"+__c+"{_rf=_a(document"+__r+")+''}"
)}
else{if(top.document&&_il(parent.frames)>1){_rf=_a(eval("document"+__r))+""}el
se if(top.document){_rf=_a(eval("top.document"+__r))+""}}if((_rf==_hud)||
(_rf==""))_rf="bookmark";_rf=unescape(_rf);_rf=_gr(_rf);_hra=_i(_rf,_d("hqsr")
,_d("hqsp"),_hrat);_ar+="&ra="+_a(_hra)+"&pu="+_a(_is(eval("document.url")
+"",0,_pum))+_hbsendev()+"&rf=";_ar+=(_il(_ar)+_il(_rf)<2048)?_a(_rf):"bookmar
k";if(_il(_ar)+_il(_pl)<2048)_ar+="&pl="+_a(_pl);
_xt("prepv",_ar);if(_d("onlymedia")!="y")_hbi.src=_ar+"&hid="+math.random();_h
bq=_is(_ar,0,_ii(_ar,"&hec"));_xt("postpv",_ar);_hbe=_na()}_pv();
function _q(a){a+="&hid="+math.random();if(_hif==0){_hif=1;_hbs="";_hbs=new
image();_hbs.src=a}else{_hif=0;_hbi="";_hbi=new image();_hbi.src=a}}
function __x(a){if(_ec==0){_ec=1;a=document;if(_nn("lt")||_nn("dlf")||
_nn("elf"))_lp(a.links);if(_nn("fv"))_fa(a);
if(_nn("lt")&&_il(_lvl)>0&&_lvl!=-
1){_sv('lv.id',_lvid,1);_sv('lv.pos',_lvpos,1);_tv()}}}
function
_ev(a,b,c,d){if(a.addeventlistener){a.addeventlistener(b,c,false)}else
if(a.attachevent){a.attachevent(((d==1)?"":"on")+b,c)}}
function _evo(e){return document.all?window.event.srcelement:this}
function _rcv(a,b,c,d){b=document.cookie;c=_ii(b,a+"=");d="";if(c>-
1){d=_ii(b,";",c+1);d=(d>0)?d:_il(b);d=(d>c)?_is(b,c+_il(a)+1,d):""}return d}
function _rrv(a){return(_lvp(document.referrer,a))}function
_rpv(a){return(_lvp(document.url,a))}
function _xt(a,b){if(typeof _d("hbon"+a)==_huf)eval("_hbon"+a+"(b)")}
_ev(window,"load",__x);_ev(window,"unload",_fu);eval('settimeout("__x()",3000)
');
</script>
<!--end websidestory code-->

</body>
</html>

You might also like