var height = screen.height;
var width = screen.width;

if ( height == 1200 && width == 1600 ) {
	document.write('<link rel="stylesheet" type="text/css" href="../css/forum_styles1600x1200.css">');
} else if ( height == 1024 && width == 1280 ) {
	document.write('<link rel="stylesheet" type="text/css" href="../css/forum_styles1280x1024.css">');
} else if ( height == 768 && width == 1024 ) {
	document.write('<link rel="stylesheet" type="text/css" href="../css/forum_styles1024x768.css">');
} else if ( height == 600 && width == 800 ) {
	document.write('<link rel="stylesheet" type="text/css" href="../css/forum_styles.css">');
} else if ( height == 480 && width == 640 ) {
	document.write('<link rel="stylesheet" type="text/css" href="../css/forum_styles.css">');
} else {
	document.write('<link rel="stylesheet" type="text/css" href="../css/forum_styles.css">');
}