// JavaScript Document

function testCookie(){
	if ( ! document.cookie)
		document.cookie = "essai=cookie";
	
	if (! document.cookie) 
		window.location.href="cookie.cfm"
}

