/*

This script detects if the users screen resolution is set to below a width of 
1024 and loads an alternative stylesheet to render the page correctly

*/

if (screen.width < 1024){ 		

	document.write("<link href='/includes/css/800x600.css' rel='stylesheet' type='text/css' media='screen' title='standard'/>");
}
		



