// (c) RTL Nederland Interactief
function Delegate(){}Delegate.create=function(o,f){var a=new Array();var l=arguments.length ;for(var i=2 ;i<l ;i++)a[i-2]=arguments[i] ;return function(){var aP=[].concat(arguments,a);f.apply(o,aP)}};Tween=function(obj,prop,func,begin,finish,duration,suffixe){this.init(obj,prop,func,begin,finish,duration,suffixe)};var t=Tween.prototype;t.obj=new Object();t.prop='';t.func=function(t,b,c,d){return c*t/d+b};t.begin=0;t.change=0;t.prevTime=0;t.prevPos=0;t.looping=false;t._duration=0;t._time=0;t._pos=0;t._position=0;t._startTime=0;t._finish=0;t.name='';t.suffixe='';t._listeners=new Array();t.setTime=function(t){this.prevTime=this._time;if(t>this.getDuration()){if(this.looping){this.rewind(t-this._duration);this.update();this.broadcastMessage('onMotionLooped',{target:this,type:'onMotionLooped'})}else{this._time=this._duration;this.update();this.stop();this.broadcastMessage('onMotionFinished',{target:this,type:'onMotionFinished'})}}else if(t<0){this.rewind();this.update()}else{this._time=t;this.update()}};t.getTime=function(){return this._time};t.setDuration=function(d){this._duration=(d==null||d<=0)?100000:d};t.getDuration=function(){return this._duration};t.setPosition=function(p){this.prevPos=this._pos;var a=this.suffixe!=''?this.suffixe:'';this.obj[this.prop]=Math.round(p)+a;this._pos=p;this.broadcastMessage('onMotionChanged',{target:this,type:'onMotionChanged'})};t.getPosition=function(t){if(t==undefined)t=this._time;return this.func(t,this.begin,this.change,this._duration)};t.setFinish=function(f){this.change=f-this.begin};t.geFinish=function(){return this.begin+this.change};t.init=function(obj,prop,func,begin,finish,duration,suffixe){if(!arguments.length)return;this._listeners=new Array();this.addListener(this);if(suffixe)this.suffixe=suffixe;this.obj=obj;this.prop=prop;this.begin=begin;this._pos=begin;this.setDuration(duration);if(func!=null&&func!=''){this.func=func}this.setFinish(finish)};t.start=function(){this.rewind();this.startEnterFrame();this.broadcastMessage('onMotionStarted',{target:this,type:'onMotionStarted'})};t.rewind=function(t){this.stop();this._time=(t==undefined)?0:t;this.fixTime();this.update()};t.fforward=function(){this._time=this._duration;this.fixTime();this.update()};t.update=function(){this.setPosition(this.getPosition(this._time))};t.startEnterFrame=function(){this.stopEnterFrame();this.isPlaying=true;this.onEnterFrame()};t.onEnterFrame=function(){if(this.isPlaying){this.nextFrame();setTimeout(Delegate.create(this,this.onEnterFrame),0)}};t.nextFrame=function(){this.setTime((this.getTimer()-this._startTime)/1000)};t.stop=function(){this.stopEnterFrame();this.broadcastMessage('onMotionStopped',{target:this,type:'onMotionStopped'})};t.stopEnterFrame=function(){this.isPlaying=false};t.continueTo=function(finish,duration){this.begin=this._pos;this.setFinish(finish);if(this._duration!=undefined)this.setDuration(duration);this.start()};t.resume=function(){this.fixTime();this.startEnterFrame();this.broadcastMessage('onMotionResumed',{target:this,type:'onMotionResumed'})};t.yoyo=function(){this.continueTo(this.begin,this._time)};t.addListener=function(o){this.removeListener(o);return this._listeners.push(o)};t.removeListener=function(o){var a=this._listeners;var i=a.length;while(i--){if(a[i]==o){a.splice(i,1);return true}}return false};t.broadcastMessage=function(){var arr=new Array();for(var i=0;i<arguments.length;i++){arr.push(arguments[i])}var e=arr.shift();var a=this._listeners;var l=a.length;for(var i=0;i<l;i++){if(a[i][e])a[i][e].apply(a[i],arr)}};t.fixTime=function(){this._startTime=this.getTimer()-this._time*1000};t.getTimer=function(){return new Date().getTime()-this._time};Tween.backEaseIn=function(t,b,c,d,a,p){if(s==undefined)var s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b};Tween.backEaseOut=function(t,b,c,d,a,p){if(s==undefined)var s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b};Tween.backEaseInOut=function(t,b,c,d,a,p){if(s==undefined)var s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b};Tween.elasticEaseIn=function(t,b,c,d,a,p){if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(!a||a<Math.abs(c)){a=c;var s=p/4}else
var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b};Tween.elasticEaseOut=function(t,b,c,d,a,p){if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(!a||a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return(a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b)};Tween.elasticEaseInOut=function(t,b,c,d,a,p){if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)var p=d*(.3*1.5);if(!a||a<Math.abs(c)){var a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b};Tween.bounceEaseOut=function(t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b}};Tween.bounceEaseIn=function(t,b,c,d){return c-Tween.bounceEaseOut(d-t,0,c,d)+b};Tween.bounceEaseInOut=function(t,b,c,d){if(t<d/2)return Tween.bounceEaseIn(t*2,0,c,d)*.5+b;else return Tween.bounceEaseOut(t*2-d,0,c,d)*.5+c*.5+b};Tween.strongEaseInOut=function(t,b,c,d){return c*(t/=d)*t*t*t*t+b};Tween.regularEaseIn=function(t,b,c,d){return c*(t/=d)*t+b};Tween.regularEaseOut=function(t,b,c,d){return-c*(t/=d)*(t-2)+b};Tween.regularEaseInOut=function(t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b};Tween.strongEaseIn=function(t,b,c,d){return c*(t/=d)*t*t*t*t+b};Tween.strongEaseOut=function(t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b};Tween.strongEaseInOut=function(t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b};OpacityTween.prototype=new Tween();OpacityTween.prototype.constructor=Tween;OpacityTween.superclass=Tween.prototype;function OpacityTween(obj,func,fromOpacity,toOpacity,duration){this.targetObject=obj;this.init(new Object(),'x',func,fromOpacity,toOpacity,duration)};var o=OpacityTween.prototype;o.targetObject={};o.onMotionChanged=function(evt){var v=evt.target._pos;var t=this.targetObject;t.style['opacity']=v/100;t.style['-moz-opacity']=v/100;if(t.filters)t.filters.alpha['opacity']=v};var image_size='http://data.rtl.nl/system/img/3yo4xsuqwg2mmeoe292a7hpe5';var stop_loading=null;var temp_position=null;var set_current_special=[];var regex_check=/[^a-z0-9]/gi;var itemcounter=0;var itemclassnamearray=[];var tab_parents='';var tab_array=[];var related_array=[];var active_to_fill_element=undefined;var curent_video_title="";var loading_array=[];var special_sub_counter=0;var content_check=null;function createCookie(name,value,days){if(days){var date=new Date();date.setTime(date.getTime()+(days*24*3600000));var expires="; expires="+date.toGMTString()}else var expires="";document.cookie=name+"="+value+expires+"; path=/"}function readPlayerCookie(name){var nameEQ=name+"=";var ca=document.cookie.split(';');for(var i=0,ca_len=ca.length;i<ca_len;i++){var c=ca[i];while(c.charAt(0)==' ')c=c.substring(1,c.length);if(c.indexOf(nameEQ)==0)return c.substring(nameEQ.length,c.length)}return""}function erasePlayerCookie(name){createCookie(name,"",-1)}function get_content_by_ajax(url,local_parents_info,pane){var s_loading_location_pane=null;var s_loading_location_archive=null;var already_loaded=0;var local_parents=null;var local_parents_length=0;if(local_parents_info!=""){local_parents=local_parents_info.split(',');local_parents_length=local_parents.length}else{local_parents=[]}var xmlHttp;var suburl=url.split(")");try{xmlHttp=new XMLHttpRequest()}catch(e){try{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP")}catch(e){try{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP")}catch(e){alert("Your browser does not support AJAX!");return false}}}xmlHttp.onreadystatechange=function(){if(xmlHttp.readyState==1){}else if(xmlHttp.readyState==4){try{if(content_check==xmlHttp.responseText){already_loaded=1}content_check=xmlHttp.responseText}catch(e){if(pane==1){document.getElementById("rtlpp_error_pane").style.display="block"}else{document.getElementById("rtlpp_error_archive").style.display="block"}}var parser_error=false;try{if(xmlHttp.responseXML.documentElement.nodeName.toLowerCase()!='ul'){throw{}}}catch(e){parser_error=true}if(parser_error){if(pane==1){document.getElementById("rtlpp_error_pane").style.display="block"}else{document.getElementById("rtlpp_error_archive").style.display="block"}xmlhttp=null;return}var xml=xmlHttp.responseXML;var rootnode=xml.documentElement;var li_elements=rootnode.getElementsByTagName('li');var temp_array_xml=[];var temp_array_info=[];var type='';for(var i=0,li_len=li_elements.length;i<li_len;i++){if(li_elements[i].hasChildNodes()&&li_elements[i].firstChild.nodeType==3){sub_sub_folder_check=0;if(local_parents_length>1&&li_elements[i].getAttribute('class')=='folder'){sub_sub_folder_check=1}if(sub_sub_folder_check!=1){var li_rel=li_elements[i].getAttribute('rel');var li_class=li_elements[i].getAttribute('class');var li_ctime="";li_ctime=(li_elements[i].getAttribute('ctime'))?li_elements[i].getAttribute('ctime'):'';var li_thumb=li_elements[i].getAttribute('thumb');var li_thumb_id=li_elements[i].getAttribute('thumb_id');if(li_thumb==null){li_thumb=""}if(li_thumb_id==null){li_thumb_id="1440938"}var li_link=li_elements[i].getAttribute('link');var li_id=(li_class=='folder')?'folder'+itemcounter:'video'+itemcounter;if(type==''){if(pane==1){type='pane'}else if(li_class=='folder'&&local_parents!=''>0){type='sub_folder'}else if(li_class=='folder'){type='folder'}else if(li_class=='item'){type='item'}else{type='video'}}var episode_title=fix_episode_in_title(li_elements[i].firstChild.nodeValue);temp_array_xml[temp_array_xml.length]=[li_id,episode_title,li_rel,li_class,li_ctime,li_thumb,li_link,local_parents,0,0,li_thumb_id];temp_array_info[temp_array_info.length]=[li_id,episode_title,li_rel,li_class,local_parents,0,0];itemcounter++}}}if(already_loaded==0){if(pane!=1){tab_array[tab_array.length]=temp_array_info}else{related_array[0]=[];related_array[0]=temp_array_info}switch(type){case'pane':init_pane(temp_array_xml);break;case'sub_folder':init_subs((tab_array.length-1));break;case'folder':init_tabs((tab_array.length-1));break;case'video':init_archive(temp_array_xml);break;case'item':init_player(temp_array_xml);break}}}if(pane==1){document.getElementById("loading_location_pane").style.display='none';window.clearInterval(s_loading_location_pane)}else{document.getElementById("loading_location_archive").style.display='none';window.clearInterval(s_loading_location_archive)}};xmlHttp.open("GET",url,true);xmlHttp.send(null)}function init_tabs(tab_array_id){var tabcontent='';var defurl='';for(var i=0,tab_len=tab_array[tab_array_id].length;i<tab_len;i++){if(tab_array[tab_array_id][i][0]!=''){tabcontent+='<div id="rtlpp_archive_tab_'+tab_array[tab_array_id][i][0]+'" class="rtlpp_archive_tab" onclick="setTabActive(\''+tab_array[tab_array_id][i][0]+'\','+tab_array_id+')"><div class="rtlpp_archive_click"><div onmouseover="this.className=\'rtlpp_archive_tab_text_over\'" onmouseout="this.className=\'rtlpp_archive_tab_text\'" class="rtlpp_archive_tab_text">'+tab_array[tab_array_id][i] [1].replace(/\ /g,"&nbsp;")+'<\/div><\/div><\/div>';if(tab_info_split[0]!=''&&tab_info_split[0]==tab_array[tab_array_id][i][1]){defurl=tab_array[tab_array_id][i][2]}}}tabcontent+='<div id="rtlpp_archive_tab_empty" class="rtlpp_archive_tab_empty">&nbsp;<\/div>';tab_container.innerHTML=tabcontent;setTabActive('',tab_array_id);if(defurl==''){defurl=tab_array[tab_array_id][0][2]}to_set_def_url=defurl.split('videomenu.x');var rtlpp_rel_content=document.getElementById('rtlpp_related_content');if(!rtlpp_rel_content)return;if(related_active=="yes"){setPaneActive(menu_prefix+to_set_def_url[0]+'videorelated.xml')}else{rtlpp_rel_content.style.display="none"}}function setTabActive(new_active_tab,tab_array_id){the_active_tab=getActiveTabId(new_active_tab,tab_array_id);var local_tab_active_id=0;for(i=0,tab_array_len=tab_array[tab_array_id].length;i<tab_array_len;i++){if(local_tab_active_id==1){document.getElementById('rtlpp_archive_tab_'+tab_array[tab_array_id][i][0]).className="rtlpp_archive_tab_next";document.getElementById('rtlpp_archive_tab_empty').className="rtlpp_archive_tab_empty";local_tab_active_id=0}else{document.getElementById('rtlpp_archive_tab_'+tab_array[tab_array_id][i][0]).className="rtlpp_archive_tab"}if(tab_array[tab_array_id][i][5]==1&&tab_array[tab_array_id][i][6]==1){tab_array[tab_array_id][i][5]==0;document.getElementById('rtlpp_archive_content_'+tab_array[tab_array_id][i][0]).className="rtlpp_archive_content"}if(tab_array[tab_array_id][i][0]==the_active_tab){tab_array[tab_array_id][i][5]=1;get_tab_content(i,tab_array_id);local_tab_active_id=1;if(i==(tab_array_len-1)){document.getElementById('rtlpp_archive_tab_empty').className="rtlpp_archive_tab_empty_prev";local_tab_active_id=0}}else{tab_array[tab_array_id][i][5]=0}document.getElementById('rtlpp_archive_tab_'+the_active_tab).className="rtlpp_archive_tab_active"}}function get_tab_content(tabid,tab_array_id,special_check){if(tab_array[tab_array_id][tabid][6]==0){if(tab_array[tab_array_id][tabid][4]==""){new_tab_content_container=document.createElement("div");new_tab_content_container.id="rtlpp_archive_content_"+tab_array[tab_array_id][tabid][0];new_tab_content_container.className="rtlpp_archive_content_show";document.getElementById("rtlpp_archive_content_space").appendChild(new_tab_content_container);active_to_fill_element=new_tab_content_container}else{active_to_fill_element=document.getElementById("rtlpp_archive_content_"+tab_array[tab_array_id][tabid][0])}var special_version="";for(var i=0,subtab_len=subtabs_special.length;i<subtab_len;i++){for(var j=0,tab_array_len=tab_array[0].length;j<tab_array_len;j++){if(tab_array[tab_array_id][tabid][0]==tab_array[0][j][0]){if(subtabs_special[i][0]==tab_array[0][j][1]){special_version=subtabs_special[i][1]}}}}if(special_version=="application"){special_application_hook(tab_array_id,tabid,document.getElementById('rtlpp_archive_content_'+tab_array[tab_array_id][tabid][0]));document.getElementById('rtlpp_archive_content_'+tab_array[tab_array_id][tabid][0]).className="rtlpp_archive_content_show"}else{if(tab_array[tab_array_id][tabid][2]!=''){var parents='';for(var j=0;j<tab_array[tab_array_id][tabid][4].length;j++){parents+=tab_array[tab_array_id][tabid][4][j]+','}parents+=tab_array[tab_array_id][tabid][0];get_content_by_ajax('/system/video/menu'+tab_array[tab_array_id][tabid][2],parents)}}tab_array[tab_array_id][tabid][6]=1}else{if(tab_array[tab_array_id][tabid][4]==""||special_check==1){document.getElementById('rtlpp_archive_content_'+tab_array[tab_array_id][tabid][0]).className="rtlpp_archive_content_show"}else{var to_tween_height=calcHeight('rtlpp_archive_content_'+tab_array[tab_array_id][tabid][0]);if(to_tween_height>1){var to_tween_object=document.getElementById('rtlpp_archive_content_'+tab_array[tab_array_id][tabid][0]).style;var to_tween_property="height";var do_tween=new Tween(to_tween_object,to_tween_property,Tween.strongEaseInOut,1,to_tween_height,1,"px");do_tween.start()}}}}function init_archive(archive_array_inhoud){var new_tab_content="";var tempcounter=1;var templocation=archive_array_inhoud[0][7].length-1;active_to_fill_element=document.getElementById("rtlpp_archive_content_"+archive_array_inhoud[0][7][templocation]);active_to_fill_element.style.height="400px";var special_check=0;var special_type="";for(var i=0,subtabs_len=subtabs_special.length;i<subtabs_len;i++){for(var j=0,tab_len=tab_array[0].length;j<tab_len;j++){if(archive_array_inhoud[0][7][0]==tab_array[0][j][0]){if(subtabs_special[i][0]==tab_array[0][j][1]){special_check=1;special_type=subtabs_special[i][2]}}}}if(special_check==0||special_type==''){if(archive_array_inhoud[0][7].length==1){new_tab_content+='<div class="rtlpp_archive_content_container_single_spacer"><\/div><div class="rtlpp_archive_content_container_single">'}var gathered_thumbs=image_size+"/";for(var i=0,archive_len=archive_array_inhoud.length;i<archive_len;i++){if(archive_array_inhoud[i][3]=='video'){gathered_thumbs+=archive_array_inhoud[i][10];if(i<(archive_len-1)){gathered_thumbs+='~'}}}var thumb_counter=0;for(var i=0,archive_len=archive_array_inhoud.length;i<archive_len;i++){if(archive_array_inhoud[i][3]=='video'){tempcounter++;var theDate=new Date(archive_array_inhoud[i][4]*1000);dateString=theDate.getDate()+'-'+(theDate.getMonth()+1)+'-'+theDate.getFullYear();var img_location_mod=0-(thumb_counter*110);(archive_array_inhoud[i][5]!="")?place_image=image_size+archive_array_inhoud[i][5]:place_image="/system/videoplayer/v3_images/black/geen-afbeelding.gif";new_tab_content+='<div id="video_item'+archive_array_inhoud[i][0]+'" onclick="curent_video_title=\''+archive_array_inhoud[i][2]+'\';set_video_active(tab_array,\'archive\');';if(related_active=="yes"){new_tab_content+='set_video_active(related_array,\'pane\')'}new_tab_content+=';play_video(tab_array,\''+archive_array_inhoud[i][0]+'\',1);" class="rtlpp_archive_item" title="'+archive_array_inhoud[i][1]+'" onmouseover="set_video_over(\'over\',\''+archive_array_inhoud[i][0]+'\',tab_array,this)" onmouseout="set_video_over(\'out\',\''+archive_array_inhoud[i][0]+'\',tab_array, this)">';new_tab_content+='<div class="rtlpp_archive_item_img" style="margin:9px 0 0 9px;width:110px;height:62px;overflow:hidden;position:relative;"><img src="'+gathered_thumbs+'" border="0" vspace="0" hspace="0" style="position:absolute;top:0px;left:'+img_location_mod+'px;" /><\/div><div class="rtlpp_play_over"><\/div>';var pay_check=0;if(pay_check==1){new_tab_content+='<div class="rtlpp_betaal"><\/div>'}new_tab_content+='<div class="rtlpp_archive_item_title">'+archive_array_inhoud[i][1]+'<\/div>';new_tab_content+='<div class="rtlpp_archive_item_date">'+dateString+'<\/div><\/div>';thumb_counter++}}if(archive_array_inhoud[0][7].length==1){new_tab_content+='<div style="clear:both;"><\/div><\/div>'}if(archive_array_inhoud[0][7].length==2&&special_check==0){active_to_fill_element.style.height="1px";active_to_fill_element.style.overflow="hidden";active_to_fill_element.innerHTML+=new_tab_content;var to_tween_height=calcHeight('rtlpp_archive_content_'+archive_array_inhoud[0][7][1]);if(to_tween_height>1){document.getElementById('rtlpp_archive_content_'+archive_array_inhoud[0][7][1]).style.overflow="hidden";var to_tween_object=document.getElementById('rtlpp_archive_content_'+archive_array_inhoud[0][7][1]).style;var to_tween_property="height";var do_tween=new Tween(to_tween_object,to_tween_property,Tween.strongEaseInOut,1,to_tween_height,1,"px");do_tween.start()}}else{active_to_fill_element.innerHTML+=new_tab_content;var to_tween_height=Math.ceil((active_to_fill_element.childNodes.length)/4)*132;active_to_fill_element.style.height="400px"}}else{var specials_array=[];var specials_list_array=[];if(special_type=='month'){for(var i=0,archive_len=archive_array_inhoud.length;i<archive_len;i++){var theDate=new Date(archive_array_inhoud[i][4]*1000);var newMonth=theDate.getMonth();var months=new Array('januari','februari','maart','april','mei','juni','juli','augustus','september','oktober','november','december');var special_maand=months[newMonth];if(specials_array[special_maand]==undefined){specials_list_array[specials_list_array.length]=special_maand;specials_array[special_maand]=new Array();specials_array[special_maand][0]=archive_array_inhoud[i]}else{specials_array[special_maand] [specials_array[special_maand].length]=archive_array_inhoud[i]}}}if(special_type=='week'){for(var i=0,archive_len=archive_array_inhoud.length;i<archive_len;i++){var theDate=new Date(archive_array_inhoud[i][4]*1000);var weekno="week "+theDate.getWeek();if(specials_array[weekno]==undefined){specials_list_array[specials_list_array.length]=weekno;specials_array[weekno]=new Array();specials_array[weekno][0]=archive_array_inhoud[i]}else{specials_array[weekno][specials_array[weekno].length]=archive_array_inhoud[i]}}}var now_active=0;if(archive_array_inhoud[0][7].length<2){new_tab_content+='<div class="rtlpp_archive_content_container_single_spacer"><\/div>';new_tab_content+='<div id="rtlpp_archive_content_fallback" class="rtlpp_archive_content_container" style="height:400px;overflow:auto;background:none;border:0px;">'}for(var i=0,specials_list_len=specials_list_array.length;i<specials_list_len;i++){special_sub_counter++;if(i==0){now_active=set_current_special.length;set_current_special[set_current_special.length]=specials_array[specials_list_array[i]][0][7][1]+specials_list_array[i].replace(' ','_')+special_sub_counter}new_tab_content+='<div id="rtlpp_archive_tab_'+specials_array[specials_list_array[i]][0][7][1]+specials_list_array[i].replace(' ','_')+special_sub_counter+'" class="rtlpp_archive_tab" style="clear:both;" onclick="set_special_active(\''+specials_array[specials_list_array[i]][0][7][1]+specials_list_array[i].replace(' ','_')+special_sub_counter+'\','+(set_current_special.length-1)+');">'+specials_list_array[i]+'<\/div><div id="rtlpp_archive_content_'+specials_array[specials_list_array[i]][0][7][1]+specials_list_array[i].replace(' ','_')+special_sub_counter+'" class="rtlpp_archive_content_container" style="overflow:hidden;height: 1px;">';var tempcounter=1;var gathered_thumbs=image_size+"/";for(var g=0,specials_arr_len=specials_array[specials_list_array[i]].length;g<specials_arr_len;g++){if(specials_array[specials_list_array[i]][g][3]=='video'){gathered_thumbs+=specials_array[specials_list_array[i]][g][10]
if(g<(specials_arr_len-1)){gathered_thumbs+='~'}}}var thumb_counter=0;for(var j=0;j<specials_array[specials_list_array[i]].length;j++){if(specials_array[specials_list_array[i]][j][3]=='video'){tempcounter++;var theDate=new Date(specials_array[specials_list_array[i]][j][4]*1000);dateString=theDate.getDate()+'-'+(theDate.getMonth()+1)+'-'+theDate.getFullYear();var img_location_mod=0-(thumb_counter*110);(archive_array_inhoud[i][5]!='')?place_image=image_size+specials_array[specials_list_array[i]][j][5]:place_image="/system/videoplayer/v3_images/black/geen-afbeelding.gif";new_tab_content+='<div id="video_item'+specials_array[specials_list_array[i]][j][0]+'" onclick="curent_video_title=\''+specials_array[specials_list_array[i]][j][2]+'\';set_video_active(tab_array,\'archive\');';if(related_active=="yes"){new_tab_content+='set_video_active(related_array,\'pane\');'}new_tab_content+='play_video(tab_array,\''+specials_array[specials_list_array[i]][j][0]+'\',1);" class="rtlpp_archive_item" title="'+specials_array[specials_list_array[i]][j][1]+'" onmouseover="set_video_over(\'over\',\''+specials_array[specials_list_array[i]][j][0]+'\',tab_array,this)" onmouseout="set_video_over(\'out\',\''+specials_array[specials_list_array[i]][j][0]+'\',tab_array,this)">';new_tab_content+='<div class="rtlpp_archive_item_img" style="margin:9px 0 0 9px;width:110px;height:62px;overflow:hidden;position:relative;"><img src="/internal-roxen-unit" rel="'+gathered_thumbs+'" border="0" vspace="0" hspace="0" style="position:absolute;top:0px;left:'+img_location_mod+'px;" /><\/div><div class="rtlpp_play_over"><\/div>';var pay_check=0;if(pay_check==1){new_tab_content+='<div class="rtlpp_betaal"><\/div>'}new_tab_content+='<div class="rtlpp_archive_item_title">'+specials_array[specials_list_array[i]][j][1]+'<\/div>';new_tab_content+='<div class="rtlpp_archive_item_date">'+dateString+'<\/div><\/div>';thumb_counter++}}new_tab_content+='<\/div>'}active_to_fill_element.innerHTML+=new_tab_content;active_to_fill_element.style.height="auto";sub_active_element=document.getElementById("rtlpp_archive_content_"+set_current_special[now_active]);sub_active_element.style.height="1px";sub_active_element.style.overflow="hidden";var to_tween_height=calcHeight("rtlpp_archive_content_"+set_current_special[now_active]);if(to_tween_height>1){var image_show_array=sub_active_element.getElementsByTagName('img');for(var i=0;i<image_show_array.length;i++){if(image_show_array[i].getAttribute('rel')!=""){image_show_array[i].src=image_show_array[i].getAttribute('rel');image_show_array[i].setAttribute('rel','')}}var to_tween_object=sub_active_element.style;var to_tween_property="height";var do_tween=new Tween(to_tween_object,to_tween_property,Tween.strongEaseInOut,1,to_tween_height,1,"px");do_tween.start()}if(archive_array_inhoud[0][7].length<2){new_tab_content+='<div id="rtlpp_archive_content_fallback" class="rtlpp_archive_content_container" style="height:1px;overflow:hidden;"><\/div>'}document.getElementById("rtlpp_archive_tab_"+set_current_special[now_active]).className="rtlpp_archive_tab_active"}set_video_active(tab_array)}function init_subs(tab_array_id){var special_check=0;var active_to_fill_element=document.getElementById("rtlpp_archive_content_"+tab_array[tab_array_id][0][4][(tab_array[tab_array_id][0][4].length-1)]);var new_tab_content='';for(var i=0;i<subtabs_special.length;i++){for(var j=0;j<tab_array[0].length;j++){if(tab_array[tab_array_id][0][4]==tab_array[0][j][0]){if(subtabs_special[i][0]==tab_array[0][j][1]){special_check=1}}}}if(special_check==0){new_tab_content+='<div class="rtlpp_archive_content_container_single_spacer"><\/div>';for(var i=0;i<tab_array[tab_array_id].length;i++){if(tab_array[tab_array_id][i][3]=='folder'){new_tab_content+='<div id="rtlpp_archive_tab_'+tab_array[tab_array_id][i][0]+'" class="rtlpp_archive_tab" style="clear:both;" onclick="setSubTabActive(\''+tab_array[tab_array_id][i][0]+'\','+tab_array_id+',0);">'+tab_array[tab_array_id][i][1]+'<\/div><div id="rtlpp_archive_content_'+tab_array[tab_array_id][i][0]+'" class="rtlpp_archive_content_container" style="height:1px;overflow:hidden;"><\/div>'}}}else{new_tab_content=getSpecialContent(tab_array_id)}active_to_fill_element.innerHTML+=new_tab_content;setSubTabActive('',tab_array_id,special_check)}function setSubTabActive(new_active_tab,tab_array_id,special_check){the_active_tab=getActiveTabId(new_active_tab,tab_array_id);for(i=0;i<tab_array[tab_array_id].length;i++){if(tab_array[tab_array_id][i][5]==1&&tab_array[tab_array_id][i][6]==1&&the_active_tab==tab_array[tab_array_id][i][0]){break}else if(tab_array[tab_array_id][i][5]==1&&tab_array[tab_array_id][i][6]==1){document.getElementById('rtlpp_archive_tab_'+tab_array[tab_array_id][i][0]).className="rtlpp_archive_tab";tab_array[tab_array_id][i][5]=0;if(tab_array[tab_array_id][i][4]==""||special_check==1){document.getElementById('rtlpp_archive_content_'+tab_array[tab_array_id][i][0]).className="rtlpp_archive_content"}else{var to_tween_height=calcHeight('rtlpp_archive_content_'+tab_array[tab_array_id][i][0]);if(to_tween_height>1){document.getElementById('rtlpp_archive_content_'+tab_array[tab_array_id][i][0]).style.overflow="hidden";var to_tween_object=document.getElementById('rtlpp_archive_content_'+tab_array[tab_array_id][i][0]).style;var to_tween_property="height";var do_tween=new Tween(to_tween_object,to_tween_property,Tween.strongEaseInOut,to_tween_height,1,1,"px");do_tween.start()}}}if(tab_array[tab_array_id][i][0]==the_active_tab&&tab_array[tab_array_id][i][5]!=1){tab_array[tab_array_id][i][5]=1;get_tab_content(i,tab_array_id,special_check)}else{tab_array[tab_array_id][i][5]=0}document.getElementById('rtlpp_archive_tab_'+the_active_tab).className="rtlpp_archive_tab_active"}}function getActiveTabId(new_active_tab,tab_array_id){var the_active_tab='';if(new_active_tab!=''){the_active_tab=new_active_tab}else{var cooky_set_tab='';for(var n=0;n<tab_array[tab_array_id].length;n++){if(tab_info_split[tab_array[tab_array_id][n][4].length]==tab_array[tab_array_id][n][1]){cooky_set_tab=tab_array[tab_array_id][n][0]}}if(document.getElementById('rtlpp_archive_tab_'+cooky_set_tab)){the_active_tab=cooky_set_tab}else{the_active_tab=tab_array[tab_array_id][0][0]}}return the_active_tab}function getSpecialContent(tab_array_id){var new_tab_content='<div class="rtlpp_season">';for(var i=0;i<tab_array[tab_array_id].length;i++){if(tab_array[tab_array_id][i][3]=='folder'){if(i==0){new_tab_content+='<div class="season_special"><div id="rtlpp_archive_tab_'+tab_array[tab_array_id][i][0]+'" class="rtlpp_archive_tab" style="clear:both;text-align:center;text-transform:uppercase;"><div style="display:inline;"><img sr'+'c="/internal-roxen-unit" width="11" height="15" border="0" vspace="0" hspace="0" style="margin:0 6px 0 0;" /><\/div>'+tab_array[tab_array_id][i][1]+'<div style="display:inline" class="season_nav_next" onclick="this.parentNode.style.display=\'none\';document.getElementById(\'rtlpp_archive_tab_'+tab_array[tab_array_id][(i+1)][0]+'\').style.display=\'block\';setSubTabActive(\''+tab_array[tab_array_id][(i+1)][0]+'\','+tab_array_id+',1);"><img sr'+'c="/internal-roxen-unit" width="11" height="15" border="0" vspace="0" hspace="0" style="margin:0 6px 0 0;" /><\/div><\/div><\/div><div id="rtlpp_archive_content_'+tab_array[tab_array_id][i][0]+'" style="overflow:hidden;border:0;background:transparent none;"><\/div>'}else if(i<(tab_array[tab_array_id].length-1)){new_tab_content+='<div class="season_special"><div id="rtlpp_archive_tab_'+tab_array[tab_array_id][i][0]+'" class="rtlpp_archive_tab" style="clear:both;display:none;text-align:center;text-transform:uppercase;"><div style="display:inline" class="season_nav_prev" onclick="this.parentNode.style.display=\'none\';document.getElementById(\'rtlpp_archive_tab_'+tab_array[tab_array_id][(i-1)][0]+'\').style.display=\'block\';setSubTabActive(\''+tab_array[tab_array_id][(i-1)][0]+'\','+tab_array_id+',1);"><img sr'+'c="/internal-roxen-unit" width="11" height="15" border="0" vspace="0" hspace="0" style="margin:0 6px 0 0;" /><\/div>'+tab_array[tab_array_id][i][1]+'<div style="display:inline" class="season_nav_next" onclick="this.parentNode.style.display=\'none\';document.getElementById(\'rtlpp_archive_tab_'+tab_array[tab_array_id][(i+1)][0]+'\').style.display=\'block\';setSubTabActive(\''+tab_array[tab_array_id][(i+1)][0]+'\','+tab_array_id+',1);"><img sr'+'c="/internal-roxen-unit" width="11" height="15" border="0" vspace="0" hspace="0" style="margin:0 6px 0 0;" /><\/div><\/div><\/div><div id="rtlpp_archive_content_'+tab_array[tab_array_id][i][0]+'" style="overflow:hidden;background:transparent none;"><\/div>'}else{new_tab_content+='<div class="season_special"><div id="rtlpp_archive_tab_'+tab_array[tab_array_id][i][0]+'" class="rtlpp_archive_tab" style="clear:both;display:none;text-align:center;text-transform:uppercase;"><div style="display:inline" class="season_nav_prev" onclick="this.parentNode.style.display=\'none\';document.getElementById(\'rtlpp_archive_tab_'+tab_array[tab_array_id][(i-1)][0]+'\').style.display=\'block\';setSubTabActive(\''+tab_array[tab_array_id][(i-1)][0]+'\','+tab_array_id+',1);"><img sr'+'c="/internal-roxen-unit" width="11" height="15" border="0" vspace="0" hspace="0" style="margin:0 6px 0 0;" /><\/div>'+tab_array[tab_array_id][i][1]+'<div style="display:inline;"><img sr'+'c="/internal-roxen-unit" width="11" height="15" border="0" vspace="0" hspace="0" style="margin:0 0 0 6px;" /><\/div><\/div><\/div><div id="rtlpp_archive_content_'+tab_array[tab_array_id][i][0]+'" style="overflow:hidden;background:transparent none;"><\/div>'}}}new_tab_content+='<\/div>';return new_tab_content}function set_special_active(to_set_item,i){sub_active_element=document.getElementById("rtlpp_archive_content_"+to_set_item);var image_show_array=sub_active_element.getElementsByTagName('img');for(var k=0;k<image_show_array.length;k++){if(image_show_array[k].getAttribute('rel')!=""){image_show_array[k].src=image_show_array[k].getAttribute('rel');image_show_array[k].setAttribute('rel','')}}if(to_set_item!=set_current_special[i]){var to_tween_height=calcHeight("rtlpp_archive_content_"+set_current_special[i]);if(to_tween_height>1){document.getElementById("rtlpp_archive_content_"+set_current_special[i]).style.overflow="hidden";document.getElementById("rtlpp_archive_tab_"+set_current_special[i]).className="rtlpp_archive_tab";var to_tween_object=document.getElementById("rtlpp_archive_content_"+set_current_special[i]).style;var to_tween_property="height";var do_tween=new Tween(to_tween_object,to_tween_property,Tween.strongEaseInOut,to_tween_height,1,1,"px");do_tween.start()}document.getElementById("rtlpp_archive_tab_"+to_set_item).className="rtlpp_archive_tab_active";sub_active_element.style.height="1px";sub_active_element.style.overflow="hidden";var to_tween_height=calcHeight("rtlpp_archive_content_"+to_set_item);if(to_tween_height>1){var to_tween_object=sub_active_element.style;var to_tween_property="height";var do_tween=new Tween(to_tween_object,to_tween_property,Tween.strongEaseInOut,1,to_tween_height,1,"px");do_tween.start()}set_current_special[i]=to_set_item}}function setPaneActive(def_url){var rtlpp_rel_content=document.getElementById('rtlpp_related_content');if(!rtlpp_rel_content)return;get_content_by_ajax(def_url,'',1)}function init_pane(def_array){var related_to_fill_element=document.getElementById("rtlpp_related_content");if(!related_to_fill_element){return}var new_related_content="";var gathered_thumbs=image_size+"/";for(var g=0,def_array_len=def_array.length;g<def_array_len;g++){if(def_array[g][3]=='video'){gathered_thumbs+=def_array[g][10]
if(g<(def_array_len-1)){gathered_thumbs+='~'}}}var thumb_counter=0;for(var y=0,def_array_len=def_array.length;y<def_array_len;y++){var img_location_mod=0-(thumb_counter*110);var theDate=new Date(def_array[y][4]*1000);dateString=theDate.getDate()+'-'+(theDate.getMonth()+1)+'-'+theDate.getFullYear();var place_image="";(def_array[y][5]!='')?place_image=image_size+def_array[y][5]:place_image="/system/videoplayer/v3_images/black/geen-afbeelding.gif";new_related_content+='<div id="video_item'+def_array[y][0]+'" class="rttpp_related_item" onmouseover="set_video_over(\'over\',\''+def_array[y][0]+'\',related_array,this)" onmouseout="set_video_over(\'out\',\''+def_array[y][0]+'\',related_array,this)" onclick="curent_video_title=\''+def_array[y][2]+'\';set_video_active(tab_array,\'archive\');set_video_active(related_array,\'pane\');play_video(related_array,\''+def_array[y][0]+'\',0);">';new_related_content+='<div style="position:relative;float:left;width:110px;height:62px;overflow:hidden;" class="rttpp_related_item_img"><img src="'+gathered_thumbs+'" border="0" vspace="0" hspace="0" style="border:0px;position:absolute;top:0px;left:'+(img_location_mod-1)+'px;" /><\/div><div class="rtlpp_play_over" title="'+def_array[y][1]+'"><\/div>';var pay_check=0;if(pay_check==1){new_tab_content+='<div class="rtlpp_betaal"><\/div>'}new_related_content+='<div class="rttpp_related_item_title">'+def_array[y][1]+'<\/div>';new_related_content+='<div class="rttpp_related_item_date">'+dateString+'<\/div><\/div>';thumb_counter++}related_to_fill_element.innerHTML=new_related_content;set_video_active(related_array,'pane')}function set_video_active(to_set_array){for(var i=0;i<to_set_array.length;i++){for(var j=0;j<to_set_array[i].length;j++){if(to_set_array[i][j][3]=="video"&&to_set_array[i][j][2]==curent_video_title&&to_set_array[i][j][6]!=1){if(to_set_array[i][j][6]!=2){document.getElementById("video_item"+to_set_array[i][j][0]).className=document.getElementById("video_item"+to_set_array[i][j][0]).className+"_active"}else{document.getElementById("video_item"+to_set_array[i][j][0]).className=document.getElementById("video_item"+to_set_array[i][j][0]).className.split("_ov")[0];document.getElementById("video_item"+to_set_array[i][j][0]).className=document.getElementById("video_item"+to_set_array[i][j][0]).className+"_active"}to_set_array[i][j][6]=1}if(to_set_array[i][j][3]=="video"&&to_set_array[i][j][2]!=curent_video_title&&to_set_array[i][j][6]==1){to_set_array[i][j][6]=0;document.getElementById("video_item"+to_set_array[i][j][0]).className=document.getElementById("video_item"+to_set_array[i][j][0]).className.split("_acti")[0]}}}}function set_video_over(mode,vid_id,to_set_array,el){for(var i=0;i<to_set_array.length;i++){for(var j=0;j<to_set_array[i].length;j++){if(to_set_array[i][j][3]=="video"&&to_set_array[i][j][0]==vid_id&&to_set_array[i][j][6]!=1&&mode=='over'){to_set_array[i][j][6]=2;document.getElementById("video_item"+to_set_array[i][j][0]).className=document.getElementById("video_item"+to_set_array[i][j][0]).className+"_over"}else if(to_set_array[i][j][3]=="video"&&to_set_array[i][j][0]==vid_id&&to_set_array[i][j][6]!=1&&mode=='out'){to_set_array[i][j][6]=0;document.getElementById("video_item"+to_set_array[i][j][0]).className=document.getElementById("video_item"+to_set_array[i][j][0]).className.split("_ov")[0]}if(to_set_array[i][j][3]=="video"&&to_set_array[i][j][0]!=vid_id&&to_set_array[i][j][6]!=1&&to_set_array[i][j][7]==2){to_set_array[i][j][6]=0;document.getElementById("video_item"+to_set_array[i][j][0]).className=document.getElementById("video_item"+to_set_array[i][j][0]).className.split("_ov")[0]}}}}function play_video(to_set_array,vid_id,location){var related=0;for(var i=0;i<to_set_array.length;i++){for(var j=0;j<to_set_array[i].length;j++){if(to_set_array[i][j][0]==vid_id){new_video(to_set_array[i][j][2],to_set_array[i][j][0],to_set_array[i][j][3]);if(location==1&&related_active=="yes"){for(var k=0;k<tab_array.length;k++){for(var l=0;l<tab_array[k].length;l++){if(tab_array[k][l][0]==the_active_tab){to_set_def_url_array=tab_array[k][l][2].split('videomenu');for(var m=0;m<subtabs_special.length;m++){if(subtabs_special[m][0]==tab_array[k][l][1]&&subtabs_special[m][1]=="related"){related=1;related_location=subtabs_special[m][2]}}(related==1)?to_set_def_url="/("+related_location+")"+to_set_array[i][j][2]:to_set_def_url=menu_prefix+to_set_def_url_array[0]+'videorelated.xml';setPaneActive(to_set_def_url)}}}}}}}}function calcHeight(calc_object){return(Math.ceil((document.getElementById(calc_object).childNodes.length)/5)*127)+12}function show_loading(location){if(location=='loading_location_archive'){var current_className_id=parseInt(document.getElementById(location).className.split('large_')[1]);(current_className_id>=12)?current_className_id=1:current_className_id++;document.getElementById(location).className="rtlpp_loading_large_"+current_className_id}else{var current_className_id=parseInt(document.getElementById(location).className.split('loading_')[1]);(current_className_id>=12)?current_className_id=1:current_className_id++;document.getElementById(location).className="rtlpp_loading_"+current_className_id}}Date.prototype.getWeek=function(){var onejan=new Date(this.getFullYear(),0,1);return Math.ceil((((this-onejan)/86400000)+onejan.getDay())/7)};var player_container=document.getElementById('rtlpp_player');var tab_container=document.getElementById('rtlpp_archive_tabs');var tab_info=readPlayerCookie('rtlPlayerPagina');erasePlayerCookie('rtlPlayerPagina');var tab_info_split="";if(tab_info!=null||tab_info!=''){tab_info_split=tab_info.split('|')}function special_application_hook(tab_array_id,tabid,app_object_div){for(var i=0;i<subtabs_special.length;i++){if(tab_array[tab_array_id][tabid][1]==subtabs_special[i][0]){app_object_div.innerHTML=document.getElementById(subtabs_special[i][3]).innerHTML}}}var rtlpp_global_cookie_values="";function set_rtlpp_global_cookie(value){erasePlayerCookie('rtlpp_global_cookie_visited');var date=new Date();date.setTime(date.getTime()+(1*24*3600000));var expires="; expires="+date.toGMTString();if(rtlpp_global_cookie_values==""){rtlpp_global_cookie_values=value}else{rtlpp_global_cookie_values+='|'+value}document.cookie="rtlpp_global_cookie_visited="+rtlpp_global_cookie_values+expires+"; path=/"}function read_rtlpp_global_cookie(){var nameEQ="rtlpp_global_cookie_visited=";var ca=document.cookie.split(';');for(var i=0,ca_len=ca.length;i<ca_len;i++){var c=ca[i];while(c.charAt(0)==' ')c=c.substring(1,c.length);if(c.indexOf(nameEQ)==0)return c.substring(nameEQ.length,c.length)}return""}function check_rtlpp_global_cookie(){var returned_items=read_rtlpp_global_cookie();rtlpp_global_cookie_values=returned_items;if(returned_items.match('|')==null&&returned_items!=''){document.getElementById(returned_items).style.display="none"}else{returned_items_array=returned_items.split('|');for(var i=0;i<returned_items_array.length;i++){if(returned_items_array[i]!=''){document.getElementById(returned_items_array[i]).style.display="none"}}}}function fix_episode_in_title(name){var new_string=name.replace(/\/(\d+)\s*$/,'afl. $1');return new_string}