function StyleForLegacyWindows(location)
{
	if(!(navigator.userAgent.match(/Win(dows )?NT 6\../)))
	{
		var head = document.getElementsByTagName("head").item(0);
		var l = document.createElement("link");
		l.setAttribute("href", location);
		l.setAttribute("rel", "stylesheet");
		l.setAttribute("type", "text/css");
		head.appendChild(l);
	}
}
