








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=DEQLjjPmwoWH7a3ZmPsBaMQCND16AYzDA31TGmD6PvcV8jyMYy&url='+URLEncode(url);
		} else {
			window.open('http://www.rsscockpit.com/tracker.jsp?code=DEQLjjPmwoWH7a3ZmPsBaMQCND16AYzDA31TGmD6PvcV8jyMYy&url='+URLEncode(url));
		}
	}
}
sheet.addRule(".rss_cockpit_newsticker7f1b93c7a0ff3c26860ae9151e2d1878", "height: 25px; line-height: 25px; background-color: #ffffff; width: 500px;left:0px;font-family: Verdana;font-size: 12px;font-style: normal; font-weight: normal;");
sheet.addRule(".rss_cockpit_newsticker7f1b93c7a0ff3c26860ae9151e2d1878 a", "white-space: nowrap; padding: 0; margin: 0 40px 0 0; color: #111112; text-decoration: none;");
sheet.addRule(".rss_cockpit_newsticker7f1b93c7a0ff3c26860ae9151e2d1878 a:hover", "text-decoration: underline;");
sheet.addRule(".rss_cockpit_item7f1b93c7a0ff3c26860ae9151e2d1878", "font-family: Verdana;font-size: 12px;font-style: normal; font-weight: normal;padding-bottom:7px; padding-right:5px; padding-left:5px;");
sheet.addRule("ul.rss_cockpit_items7f1b93c7a0ff3c26860ae9151e2d1878", "list-style-type: disc; padding-left:22px;");
sheet.addRule(".rss_cockpit_date7f1b93c7a0ff3c26860ae9151e2d1878", "font-size: 12px;font-style: normal; font-weight: normal;");
sheet.addRule(".rss_cockpit_source7f1b93c7a0ff3c26860ae9151e2d1878", "font-size: 10px;font-style: normal; font-weight: normal;");
sheet.addRule(".rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878", "font-family: Verdana;font-size: 12px;font-style: normal; font-weight: normal;");
sheet.addRule(".rss_cockpit_item_title_br7f1b93c7a0ff3c26860ae9151e2d1878", "margin:4px");
sheet.addRule(".rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878 a:link", "text-decoration : none; margin-left:0px;border-bottom: 1px solid #111112; color: #111112;");
sheet.addRule(".rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878 a:visited", "text-decoration : none; margin-left:0px;border-bottom: 1px solid #111112; color: #111112;");
sheet.addRule(".rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878 a:active", "text-decoration : none; margin-left:0px;border-bottom: 1px solid #111112; color: #111112;");
sheet.addRule(".rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878 a:hover", "text-decoration : none;	margin-left:0px;color: #111112;	border-bottom: 1px dotted #ffffff;");

document.write('<div id="scroll-7f1b93c7a0ff3c26860ae9151e2d1878" class="rss_cockpit_newsticker7f1b93c7a0ff3c26860ae9151e2d1878" style="height: 25px; width: 500px;">');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/650/Stage_Business_Process_Management.vacature\',\'false\');return false;">Commant: Stage Business Process Management Verdi/Wintertuin Stand nr. 31</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/651/PHP_Programmeur_(m/v).vacature\',\'false\');return false;">Appsoftware: PHP Programmeur Verdi/Wintertuin Stand nr. 41</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/652/Consultant_intranet_en_kennismanagement.vacature\',\'false\');return false;">iLLUMION: Consultant intranet en KM Verdi/Wintertuin Stand nr. 45</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/653/(Web)Developer.vacature\',\'false\');return false;">iLLUMION: (Web)Developer Verdi/Wintertuin Stand nr. 45</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/643/Assistent_filiaalhouder_studentenmarkt.vacature\',\'false\');return false;">Selexyz: Ass. filiaalhouder studentenmarkt Verdi/Wintertuin Stand nr. 47</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/644/Projectleider_e-commerce.vacature\',\'false\');return false;">Selexyz: Projectleider e-commerce Verdi/Wintertuin Stand nr. 47</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/645/Projectmanager_ICT.vacature\',\'false\');return false;">Selexyz: Projectmanager ICT Verdi/Wintertuin Stand nr. 47</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/646/Projectmedewerker_e-commerce.vacature\',\'false\');return false;">Selexyz, Projectmedewerker e-commerce Verdi/Wintertuin Stand nr. 47</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/632/Senior_Developer_/_Analist_Java.vacature\',\'false\');return false;">Gridline: Senior Developer/Analist Java Verdi Stand nr. 42</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/636/Projectmanager.vacature\',\'false\');return false;">Reekx: Projectmanager Mozart Stand nr. 21</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/650/Stage_Business_Process_Management.vacature\',\'false\');return false;">Commant: Stage Business Process Management Verdi/Wintertuin Stand nr. 31</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/651/PHP_Programmeur_(m/v).vacature\',\'false\');return false;">Appsoftware: PHP Programmeur Verdi/Wintertuin Stand nr. 41</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/652/Consultant_intranet_en_kennismanagement.vacature\',\'false\');return false;">iLLUMION: Consultant intranet en KM Verdi/Wintertuin Stand nr. 45</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/653/(Web)Developer.vacature\',\'false\');return false;">iLLUMION: (Web)Developer Verdi/Wintertuin Stand nr. 45</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/643/Assistent_filiaalhouder_studentenmarkt.vacature\',\'false\');return false;">Selexyz: Ass. filiaalhouder studentenmarkt Verdi/Wintertuin Stand nr. 47</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/644/Projectleider_e-commerce.vacature\',\'false\');return false;">Selexyz: Projectleider e-commerce Verdi/Wintertuin Stand nr. 47</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/645/Projectmanager_ICT.vacature\',\'false\');return false;">Selexyz: Projectmanager ICT Verdi/Wintertuin Stand nr. 47</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/646/Projectmedewerker_e-commerce.vacature\',\'false\');return false;">Selexyz, Projectmedewerker e-commerce Verdi/Wintertuin Stand nr. 47</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/632/Senior_Developer_/_Analist_Java.vacature\',\'false\');return false;">Gridline: Senior Developer/Analist Java Verdi Stand nr. 42</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/636/Projectmanager.vacature\',\'false\');return false;">Reekx: Projectmanager Mozart Stand nr. 21</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/650/Stage_Business_Process_Management.vacature\',\'false\');return false;">Commant: Stage Business Process Management Verdi/Wintertuin Stand nr. 31</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/651/PHP_Programmeur_(m/v).vacature\',\'false\');return false;">Appsoftware: PHP Programmeur Verdi/Wintertuin Stand nr. 41</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/652/Consultant_intranet_en_kennismanagement.vacature\',\'false\');return false;">iLLUMION: Consultant intranet en KM Verdi/Wintertuin Stand nr. 45</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/653/(Web)Developer.vacature\',\'false\');return false;">iLLUMION: (Web)Developer Verdi/Wintertuin Stand nr. 45</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/643/Assistent_filiaalhouder_studentenmarkt.vacature\',\'false\');return false;">Selexyz: Ass. filiaalhouder studentenmarkt Verdi/Wintertuin Stand nr. 47</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/644/Projectleider_e-commerce.vacature\',\'false\');return false;">Selexyz: Projectleider e-commerce Verdi/Wintertuin Stand nr. 47</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/645/Projectmanager_ICT.vacature\',\'false\');return false;">Selexyz: Projectmanager ICT Verdi/Wintertuin Stand nr. 47</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/646/Projectmedewerker_e-commerce.vacature\',\'false\');return false;">Selexyz, Projectmedewerker e-commerce Verdi/Wintertuin Stand nr. 47</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/632/Senior_Developer_/_Analist_Java.vacature\',\'false\');return false;">Gridline: Senior Developer/Analist Java Verdi Stand nr. 42</a>&#160;&#160;&#160;</div>');
document.write('<div class="tickerarticle"><a class="rss_cockpit_item_title7f1b93c7a0ff3c26860ae9151e2d1878" href="javascript:void(0);" onclick="openArticle(\'http://www.nvbonline.nl/636/Projectmanager.vacature\',\'false\');return false;">Reekx: Projectmanager Mozart Stand nr. 21</a>&#160;&#160;&#160;</div>');
document.write('</div>');
document.write('<script type="text/javascript">divScroller("scroll-7f1b93c7a0ff3c26860ae9151e2d1878", "v", 77, 777);</script>');
