// JavaScript Document

function checkBrowser(){
	var str = navigator.userAgent;
	var lt = "<";
	var gt = ">";
	var error = 'Welcome to the NPL Solutions Blog. You are currently viewing this page in a browser which does not comply to ' + lt + 'a href="http://www.w3.org"' + gt + 'W3C' + lt + '/a' + gt + ' standards. Because this page can not be properly displayed, we ask that you download the latest version of Internet Explorer. There is a free update available through ' + lt + 'a href="http://www.microsoft.com/windows/products/winfamily/ie/default.mspx"' + gt + 'Microsoft' + lt + '/a' + gt + '. We\'re sorry for the inconvenience.';
	if(str.indexOf("MSIE 6") >= 0 || str.indexOf("MSIE 5") >= 0){
		document.getElementById('ie6').innerHTML = error;
		}
	}
