// Redirect Mobile Users to CCS Mobile Site.
<!--

try {
	var ans;
		if (screen.width < 400)	{ 
			ans = confirm('Your Screen Resolution is ' 
				+ screen.width + 'x' + screen.height
				+ '\n\nDo you want to use our Summary site for Mobile Users?');
			if (ans) {
					location.href = 'http://www.ccscentral.mobi';
			}
		}
	}
	catch(e){ccs_jserror(e.message,e.url,e.line,e.lineNumber,e.fileName,e.number,e.stack);}
// -->

