








function CSSStyleSheet(){this.rules=[];this.ruleIndex=[];if(document.createStyleSheet){this.sheet=document.createStyleSheet();}else{this.styleElement=document.createElement("style");document.getElementsByTagName("head")[0].appendChild(this.styleElement);this.sheet=this.styleElement.styleSheet?this.styleElement.styleSheet:this.styleElement.sheet;}}

CSSStyleSheet.prototype.addRule=function(selectorText,ruleText){var result;if(!this.sheet){ruleText=ruleText.replace(/^\{?([^\}])/,"$1");if(!this.ruleIndex[selectorText])this.ruleIndex[selectorText]=this.rules.length;this.rules[this.ruleIndex[selectorText]]=ruleText;var cssText="";for(var sel in this.ruleIndex)cssText=sel+" {"+this.rules[this.ruleIndex[sel]]+"}";this.styleElement.innerHTML=cssText;}else if(this.sheet.addRule){ruleText=ruleText.replace(/^\{?([^\}])/,"$1");var r=this.sheet.rules.length;this.sheet.addRule(selectorText,ruleText);result=this.sheet.rules[r];this.ruleIndex[selectorText]=r;if(this.rules.length==0){this.rules=this.sheet.rules;}}else if(this.sheet.insertRule){if(!/^\{[^\}]*\}$/.test(ruleText))ruleText="{"+ruleText+"}";var r=this.sheet.cssRules.length;this.sheet.insertRule(selectorText+" "+ruleText,r);result=this.sheet.cssRules[r];this.ruleIndex[selectorText]=r;if(this.rules.length==0){this.rules=this.sheet.cssRules;}}else{alert("Cannot create rule");}return result;}

CSSStyleSheet.prototype.changeRule=function(selectorText,property,value){var index=this.ruleIndex[selectorText];if(typeof index=="undefined"){this.addRule(selectorText,property+":"+value);}if(!this.sheet){var cssText=this.rules[index];if(cssText){var propSearch=new RegExp("^(.*"+property+"\\s*\:\\s*)([^;]*)(.*)$");var ruleText=propSearch.exec(cssText);if(ruleText){if(ruleText[4]!=value){this.rules[index]=ruleText[1]+value+ruleText[3];}}else{this.rules[index]=cssText+"; "+property+": "+value+";";}cssText="";for(var sel in this.ruleIndex)cssText=sel+" {"+this.rules[this.ruleIndex[sel]]+"}";this.styleElement.innerHTML=cssText;}var cssText="";for(var sel in this.ruleIndex)cssText=sel+" {"+this.rules[this.ruleIndex[sel]]+"}";}else if(this.rules[index].style){var m=/^([^-]*)-([a-z])(.*)$/.exec(property);while(m){property=m[1]+m[2].toUpperCase()+m[3];m=/^([^-]*)-([a-z])(.*)$/.exec(property);}this.rules[index].style[property]=value;}else if(this.sheet.insertRule){var oldRule=this.rules[index];if(oldRule){var cssText=oldRule.cssText;var propSearch=new RegExp("^[^\\{]*(\\{.*"+property+"\\s*\\:\\s*)([^};]*)([^}]*})");var ruleText=propSearch.exec(cssText);if(ruleText){if(ruleText[4]!=value){cssText=ruleText[1]+value+ruleText[3];this.sheet.deleteRule(index);this.sheet.insertRule(selectorText+" "+cssText,index);}}else{var propSearch=new RegExp("\\{([^}]*)}");ruleText=propSearch.exec(cssText);cssText="{ "+ruleText[1]+"; "+property+": "+value+" }";this.sheet.deleteRule(index);this.sheet.insertRule(selectorText+" "+cssText,index);}}}}

CSSStyleSheet.prototype.getRuleProperty=function(selectorText,property){var index=this.ruleIndex[selectorText];if(typeof index=="undefined"){return;}if(!this.sheet){var cssText=this.rules[index];if(cssText){var propSearch=new RegExp("^.*"+property+"\s*\:\s*([^;]*)");var ruleText=propSearch.exec(cssText);if(ruleText){return ruleText[1];}}}else if(this.rules[index].style){var m=/^([^-]*)-([a-z])(.*)$/.exec(property);while(m){property=m[1]+m[2].toUpperCase()+m[3];m=/^([^-]*)-([a-z])(.*)$/.exec(property);}var style=this.rules[index].style;return style[property];}else if(this.sheet.insertRule){var oldRule=this.rules[index];if(oldRule){cssText=oldRule.cssText;var propSearch=new RegExp("^.*"+property+"\\s*\\:\\s*([^};]*)");var ruleText=propSearch.exec(cssText);if(ruleText){return ruleText[1];}}}}

var sheet = new CSSStyleSheet();

function URLEncode(clearString){var output='';var x=0;clearString=clearString.toString();var regex=/(^[a-zA-Z0-9_.]*)/;while(x<clearString.length){var match=regex.exec(clearString.substr(x));if(match!=null&&match.length>1&&match[1]!=''){output+=match[1];x+=match[1].length;}else{if(clearString[x]==' ')output+='+';else{var charCode=clearString.charCodeAt(x);var hexVal=charCode.toString(16);output+='%'+(hexVal.length<2?'0':'')+hexVal.toUpperCase();}x++;}}return output;}

function openArticle(url,localArticle) {
	if (url.match("^http://"+location.hostname)=="http://"+location.hostname) {
		location.href=url;
	} else {
		if (localArticle=="true") {	
			location.href='http://www.rsscockpit.com/tracker.jsp?code=737sfGFD0j2NRcNcImiiJMp4AsBHCnDFzV8ZdTLvw1NaiU6iRj&url='+URLEncode(url);
		} else {
			window.open('http://www.rsscockpit.com/tracker.jsp?code=737sfGFD0j2NRcNcImiiJMp4AsBHCnDFzV8ZdTLvw1NaiU6iRj&url='+URLEncode(url));
		}
	}
}
sheet.addRule(".rss_cockpit_newsticker2ce20e9e58f84c9af6df805868205734", "height: 20px; line-height: 20px; background-color: #faf7fa; width: 825px;left:0px;font-family: sans-serif;font-size: 15px;font-style: normal; font-weight: normal;");
sheet.addRule(".rss_cockpit_newsticker2ce20e9e58f84c9af6df805868205734 a", "white-space: nowrap; padding: 0; margin: 0 40px 0 0; color: #000000; text-decoration: none;");
sheet.addRule(".rss_cockpit_newsticker2ce20e9e58f84c9af6df805868205734 a:hover", "text-decoration: underline;");
sheet.addRule(".rss_cockpit_item2ce20e9e58f84c9af6df805868205734", "font-family: sans-serif;font-size: 15px;font-style: normal; font-weight: normal;padding-bottom:7px; padding-right:5px; padding-left:5px;");
sheet.addRule("ul.rss_cockpit_items2ce20e9e58f84c9af6df805868205734", "list-style-type: disc; padding-left:22px;");
sheet.addRule(".rss_cockpit_date2ce20e9e58f84c9af6df805868205734", "color: #FF0000;font-size: 15px;font-style: normal; font-weight: normal;");
sheet.addRule(".rss_cockpit_source2ce20e9e58f84c9af6df805868205734", "font-size: 11px;font-style: normal; font-weight: normal;");
sheet.addRule(".rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734", "font-family: sans-serif;font-size: 15px;font-style: normal; font-weight: normal;");
sheet.addRule(".rss_cockpit_item_title_br2ce20e9e58f84c9af6df805868205734", "margin:4px");
sheet.addRule(".rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734 a:link", "text-decoration : none; margin-left:0px;border-bottom: 1px solid #000000; color: #000000;");
sheet.addRule(".rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734 a:visited", "text-decoration : none; margin-left:0px;border-bottom: 1px solid #000000; color: #000000;");
sheet.addRule(".rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734 a:active", "text-decoration : none; margin-left:0px;border-bottom: 1px solid #000000; color: #000000;");
sheet.addRule(".rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734 a:hover", "text-decoration : none;	margin-left:0px;color: #000000;	border-bottom: 1px dotted #faf7fa;");

document.write('<div id="scroll-2ce20e9e58f84c9af6df805868205734" class="rss_cockpit_newsticker2ce20e9e58f84c9af6df805868205734" style="height: 20px; width: 825px;">');
document.write('<div><span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.rtl.nl/(/actueel/rtlnieuws/buitenland/)/components/actueel/rtlnieuws/2010/09_september/02/buitenland/weer-explosie-op-booreiland-in-golf.xml\',\'false\');return false;">Weer explosie op booreiland in Golf</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.bnr.nl/artikel/20178512/wilders-zeer-geschokt-bedreiging\',\'false\');return false;">Wilders &acute;zeer geschokt&acute; door bedreiging</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.rtl.nl/(/actueel/rtlnieuws/binnenland/)/components/actueel/rtlnieuws/2010/09_september/03/binnenland/textielarbeiders-ca-hm-uitgebuit.xml\',\'false\');return false;">&acute;Meisjes uitgebuit voor C&amp;A en H&amp;M&acute;</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.depers.nl/binnenland/506658/Onthoofd-Wilders.html\',\'false\');return false;">&acute;Onthoofd Wilders&acute;</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.telegraaf.nl/telesport/voetbal/psv/article7545146.ece?cid=rss\',\'false\');return false;">Bouma: Tijd bij Villa niet makkelijk</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.rtl.nl/(/actueel/rtlnieuws/binnenland/)/components/actueel/rtlnieuws/2010/09_september/03/binnenland/verkeersboetes-in-2011-fors-hoger.xml\',\'false\');return false;">&acute;Verkeersboetes in 2011 fors hoger&acute;</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.telegraaf.nl/telesport/voetbal/psv/article7545137.ece?cid=rss\',\'false\');return false;">Bouma: Dat is lang geleden</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.nd.nl/artikelen/2010/september/03/-dissidente-cda-ers-blijven-fractie-trouw\',\'false\');return false;">&#8216;Dissidente&#8217; CDA&#8217;ers blijven fractie trouw</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.trouw.nl/nieuws/nederland/article3191723.ece/Australische_haatimam_roept_op_tot_doden_Wilders.html\',\'false\');return false;">Australische haatimam roept op tot doden Wilders</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.bnr.nl/artikel/20178094/bakker-derde-ronde\',\'false\');return false;">De Bakker naar derde ronde</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.rtl.nl/(/actueel/rtlnieuws/buitenland/)/components/actueel/rtlnieuws/2010/09_september/02/buitenland/weer-explosie-op-booreiland-in-golf.xml\',\'false\');return false;">Weer explosie op booreiland in Golf</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.bnr.nl/artikel/20178512/wilders-zeer-geschokt-bedreiging\',\'false\');return false;">Wilders &acute;zeer geschokt&acute; door bedreiging</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.rtl.nl/(/actueel/rtlnieuws/binnenland/)/components/actueel/rtlnieuws/2010/09_september/03/binnenland/textielarbeiders-ca-hm-uitgebuit.xml\',\'false\');return false;">&acute;Meisjes uitgebuit voor C&amp;A en H&amp;M&acute;</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.depers.nl/binnenland/506658/Onthoofd-Wilders.html\',\'false\');return false;">&acute;Onthoofd Wilders&acute;</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.telegraaf.nl/telesport/voetbal/psv/article7545146.ece?cid=rss\',\'false\');return false;">Bouma: Tijd bij Villa niet makkelijk</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.rtl.nl/(/actueel/rtlnieuws/binnenland/)/components/actueel/rtlnieuws/2010/09_september/03/binnenland/verkeersboetes-in-2011-fors-hoger.xml\',\'false\');return false;">&acute;Verkeersboetes in 2011 fors hoger&acute;</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.telegraaf.nl/telesport/voetbal/psv/article7545137.ece?cid=rss\',\'false\');return false;">Bouma: Dat is lang geleden</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.nd.nl/artikelen/2010/september/03/-dissidente-cda-ers-blijven-fractie-trouw\',\'false\');return false;">&#8216;Dissidente&#8217; CDA&#8217;ers blijven fractie trouw</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.trouw.nl/nieuws/nederland/article3191723.ece/Australische_haatimam_roept_op_tot_doden_Wilders.html\',\'false\');return false;">Australische haatimam roept op tot doden Wilders</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.bnr.nl/artikel/20178094/bakker-derde-ronde\',\'false\');return false;">De Bakker naar derde ronde</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.rtl.nl/(/actueel/rtlnieuws/buitenland/)/components/actueel/rtlnieuws/2010/09_september/02/buitenland/weer-explosie-op-booreiland-in-golf.xml\',\'false\');return false;">Weer explosie op booreiland in Golf</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.bnr.nl/artikel/20178512/wilders-zeer-geschokt-bedreiging\',\'false\');return false;">Wilders &acute;zeer geschokt&acute; door bedreiging</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.rtl.nl/(/actueel/rtlnieuws/binnenland/)/components/actueel/rtlnieuws/2010/09_september/03/binnenland/textielarbeiders-ca-hm-uitgebuit.xml\',\'false\');return false;">&acute;Meisjes uitgebuit voor C&amp;A en H&amp;M&acute;</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.depers.nl/binnenland/506658/Onthoofd-Wilders.html\',\'false\');return false;">&acute;Onthoofd Wilders&acute;</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.telegraaf.nl/telesport/voetbal/psv/article7545146.ece?cid=rss\',\'false\');return false;">Bouma: Tijd bij Villa niet makkelijk</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.rtl.nl/(/actueel/rtlnieuws/binnenland/)/components/actueel/rtlnieuws/2010/09_september/03/binnenland/verkeersboetes-in-2011-fors-hoger.xml\',\'false\');return false;">&acute;Verkeersboetes in 2011 fors hoger&acute;</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.telegraaf.nl/telesport/voetbal/psv/article7545137.ece?cid=rss\',\'false\');return false;">Bouma: Dat is lang geleden</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.nd.nl/artikelen/2010/september/03/-dissidente-cda-ers-blijven-fractie-trouw\',\'false\');return false;">&#8216;Dissidente&#8217; CDA&#8217;ers blijven fractie trouw</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.trouw.nl/nieuws/nederland/article3191723.ece/Australische_haatimam_roept_op_tot_doden_Wilders.html\',\'false\');return false;">Australische haatimam roept op tot doden Wilders</a>&#160;&#160;&#160;<span class="rss_cockpit_date2ce20e9e58f84c9af6df805868205734">03-09-2010 - </span><a class="rss_cockpit_item_title2ce20e9e58f84c9af6df805868205734" href="javascript:void(0);" onclick="openArticle(\'http://www.bnr.nl/artikel/20178094/bakker-derde-ronde\',\'false\');return false;">De Bakker naar derde ronde</a>&#160;&#160;&#160;</div>');
document.write('</div>');
document.write('<script type="text/javascript">divScroller("scroll-2ce20e9e58f84c9af6df805868205734", "h", 20, 2000);</script>');
