function isIE6()
{
	ua	= navigator.userAgent.toLowerCase();
	if( ua.indexOf( "msie" ) && !window.XMLHttpRequest )
	{
		var ie6View	= document.getElementById( 'ie6View' );
		var sAlert	= '<div class="background">&nbsp;</div>'
			+ '<div class="alert">'
			+ '<p class="close-box"><a href="#" onclick="vanquish( \'ie6View\' );" title="[ Close Window ]">[x] close</a></p>'
			+ '<h3><span>Browser Update Recommendation</span></h3>'
			+ '<p><span>For the best user experience, this site is optimized '
			+ 'for Internet Explorer 7 (IE7) and higher, Firefox 3, and '
			+ 'Safari 3.</span></p>'
			+ '<p><span>If you are using Internet Explorer 6 (IE6), we '
			+ 'recommend you upgrade to the latest version so you can enjoy '
			+ 'the full experience of www.lakesidecommunityhealthcare.com.  '
			+ '</span></p>'
			+ '<p class="update-link"><a href="http://www.microsoft.com/windows/downloads/ie/getitnow.mspx" '
			+ 'title="[ Update to Latest Version of IE ]">Update to the Latest Version of Internet Explorer</a></p>'
			+ '</div>';
		
		ie6View.innerHTML	= sAlert;
		return true;
	}
	
	return false;
}