// JavaScript Document
if (screen.width <= 800)
{ // or some other arbitrary condition
document.write("<LINK href='system_low_res.css' type='text/css' href='test.css' rel='stylesheet'>");
}
else
{
document.write("<LINK href='system.css' type='text/css'  rel='stylesheet'>");
}

