function css()
{
var myLink = document.createElement("link");
myLink.setAttribute("rel", "stylesheet");
myLink.setAttribute("type", "text/css");
myLink.setAttribute("id", "css");

if(navigator.appName == "Microsoft Internet Explorer")
  myLink.setAttribute("href", "M2ie.css");
else
  myLink.setAttribute("href", "M2.css");
document.body.appendChild(myLink);
}