// JavaScript Document

// Check browers type and version
// Check if it is MSIE 6 (for example)
applyStyleIfIE6 = function (stylepath) {
    if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){
		var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
		if (ieversion < 7) {	
           var cssNode = document.createElement('link');
			cssNode.setAttribute('rel', 'stylesheet');
			cssNode.setAttribute('type', 'text/css');
			cssNode.setAttribute('href', stylepath);
			document.getElementsByTagName('head')[0].appendChild(cssNode); 
		}
    }
}