// JavaScript Document
<!-- 
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
function writeBody()
{
	// SVGA Super Video Graphics Array 800x600
	if (screen.width <= 1023) {
	document.location = "screen_resolution.php";
	}
	
	// XGA eXtended Graphics Array 1024×768
	if (screen.width <= 1024) {
	document.write('<body class="body1024">');
	}
	
	// WXGA Widescreen eXtended Graphics Array 1152×864 
	if (screen.width <= 1152) {
	document.write('<body class="body1152">');
	}
	
	// WXGA Widescreen eXtended Graphics Array 1280×768
	// WXGA Widescreen eXtended Graphics Array 1280×800
	// SXGA Super eXtended Graphics Array 1280×960
	// SXGA Super eXtended Graphics Array 1280×1024
	if (screen.width <= 1280) {
	document.write('<body class="body1280">');
	}
	
	// WXGA Widescreen eXtended Graphics Array 1366×768
	if (screen.width <= 1366) {
	document.write('<body class="body1366">');
	}
	
	// WSXGA Widescreen Super eXtended Graphics Array 1440×900
	if (screen.width <= 1440) {
	document.write('<body class="body1440">');
	}
	
	// Ultra eXtended Graphics Array 1600×1200
	// WSXGA Widescreen Super eXtended Graphics Array Plus 1680×1050
	if (screen.width <= 1680) {
	document.write('<body class="body1680">');
	}
	
	// Full High Definition	1920×1080
	// WUXGA Widescreen Ultra eXtended Graphics Array 1920×1200
	if (screen.width <= 1920) {
	document.write('<body class="body1920">');
	}
	
	// All Screen Sizes Over 192x1080
	// No Screen Standards Created In 2009
	if (screen.width > 1920) {
	document.write('<body class="body1920">');
	}

}
//-->