'
);
}
/*
Test out all the optional css includes by checking their regular expression
against the window location
*/
if ( document.getElementsByTagName) {
var selectors = document.getElementsByTagName('link');
var wanted_selectors = new RegExp('^csslink_optional');
for (var i = 0; i < selectors.length ; i++ ) {
var css_regexp = new RegExp(selectors[i].title);
if ( wanted_selectors.test(selectors[i].id) ) {
selectors[i].disabled = true;
}
if ( css_regexp.test(window.location) ) {
selectors[i].disabled = false;
}
}
}
//-->