
function AltCss(sCssPath) {
	var sCookies=document.cookie.split(';');
	if (sCookies) {
		if (sCssPath&&sCssPath!=''&&sCssPath.substring(sCssPath.length)!='/') sCssPath+='/';
		for (var i=0; i<sCookies.length; i++) {
			if (sCookies[i].indexOf('=')>0) {
				var sName=sCookies[i].split('=')[0].replace(/^\s+|\s+$/,'');
				var sValue=sCookies[i].split('=')[1].replace(/^\s+|\s+$/,'');
				if (sName=='Contrast') {
					if (sValue=='low') document.write('<link rel="stylesheet" href="'+sCssPath+'contrastlow.css" type="text/css">');
					else if (sValue=='high') document.write('<link rel="stylesheet" href="'+sCssPath+'contrasthigh.css" type="text/css">');
				}
				else if (sName=='Font') {
					if (sValue=='serif') document.write('<link rel="stylesheet" href="'+sCssPath+'fonthigh.css" type="text/css">');
				}
			}
		}
	}
}
