﻿//-- Choose the appropriate stylesheet according to the user's screen resolution.

document.write("<link rel='stylesheet' type='text/css' href='");

if (window.screen.width > 1152)
{
	//-- Resolution is 1280px width or more.
	document.write("/StyleSheets/page-format-lge.css'>");
} 
else
{
	//-- Resolution is less than 1280px width.
	document.write("/StyleSheets/page-format-std.css'>");
}


