
// Choose the appropriate stylesheet according to the user's screen resolution
document.write("<link rel='stylesheet' type='text/css' href='");

if (window.screen.width < 950)
{
	//resolution is less than 1024x768
	document.write("listbypages800x600.css'>");
}
else
{
	document.write("listbypages.css'>");
}
