var IE6 = true && (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
if(IE6){
  
  Event.observe(window,'load', function(){
		var now = new Date();
		var time = now.getTime();
		
		var header = new Element('div', {id: 'noie6', style: 'display: none; color: white; background-color: black; margin: 10px; padding: 10px; border: 1px solid white; width: auto; text-align: center;'}).update('Your browser (Internet Explorer 6) is not web standards compliant and is insecure.  Upgrade or find an alternative <a style="color: white;" href="http://savethedevelopers.org">here</a>.')
		
		var body = $$('body').first();
		Element.insert(body.firstChild,{before:header});
		Effect.Appear('noie6');
	});
}