new function(){
	var a = document.createElement( 'a' );
	a.appendChild(document.createTextNode("お使いのブラウザはIEの古いバージョンです。よりインターネットを快適に楽しむ為に最新のバージョンにアップデートしましょう"));
	a.href="http://www.microsoft.com/japan/windows/products/winfamily/ie/default.mspx";
	var p = document.createElement( 'p' );
	p.appendChild(a);
	var div = document.createElement( 'div' );
	div.appendChild(p);
	document.body.appendChild(div);
	div.style.position="absolute";
	div.style.top="0";
	div.style.left="0";
	div.style.width=document.documentElement.clientWidth+"px";
	div.style.paddingTop="0.5em";
	div.style.paddingBottom="0.5em";
	div.style.backgroundColor="red";
	p.style.textIndent="10px";
	a.style.color="blue";
	document.body.style.paddingTop="2em";
}

