<!--
	browser_version= parseInt(navigator.appVersion);
	browser_type = navigator.appName;

	if (browser_type == "Microsoft Internet Explorer" && (browser_version >= 4)) {
		if (screen.width <= 1024) {
		document.write('<link rel="stylesheet" type="text/css" href="ie1024.css">');
		document.cookie = "width=1024";
		}
		if (screen.width <= 800) {
		document.write('<link rel="stylesheet" type="text/css" href="ie800.css">'); 
		document.cookie = "width=800";
		}
		else if (screen.width >= 1025) {
		document.write('<link rel="stylesheet" type="text/css" href="ie.css">'); 
		document.cookie = "width=1280";
		}
	}
	else if (browser_type == "Netscape" && (browser_version >= 4)) {
		if (screen.width <= 1024) {
		document.write('<link rel="stylesheet" type="text/css" href="net1024.css">');
		document.cookie = "width=1024";
		}
		if (screen.width <= 800) {
		document.write('<link rel="stylesheet" type="text/css" href="net800.css">'); 
		document.cookie = "width=800";
		}
		else if (screen.width >= 1025) {
		document.write('<link rel="stylesheet" type="text/css" href="net.css">'); 
		document.cookie = "width=1280";
		}
	}
	
// -->
