
//tmtC_cssOnResolution

if (window.screen){

  var w = screen.width;

  tmt_css_640 = "800.css";

  tmt_css_800 = "800.css";

  tmt_css_1024 = "1024.css";

  if(w<740){

    document.write("<link rel='stylesheet' href='" + tmt_css_640 + "' type='text/css'>");

  }

  if(w>=740 & w<835){

    document.write("<link rel='stylesheet' href='" + tmt_css_800 + "' type='text/css'>");

  }

  if(w>=835){

    document.write("<link rel='stylesheet' href='" + tmt_css_1024 + "' type='text/css'>");

  }

}//tmtC_cssOnResolutionEnd

