检测浏览器是否支持cookie功能
<script>
	if(navigator.cookieEnabled)
	{
		document.write("你的浏览器支持cookie功能!");
	}
	else{
		document.write("你的浏览器不支持cookie!");
	}
</script>
<script>
	if(navigator.cookieEnabled)
	{
		document.write("你的浏览器支持cookie功能!");
	}
	else{
		document.write("你的浏览器不支持cookie!");
	}
</script>
