<!-- The code below enables IE specific css files to be called up for IE browsers -->
function styleSheetPicker() {}

styleSheetPicker.prototype.render = function(ieStyleSheet) {
    if (document.createStyleSheet) {
        if (ieStyleSheet)
            document.createStyleSheet(ieStyleSheet);
    }
}