Set_Cookie( 'test', 'none', '', '/', '', '' );
// if Get_Cookie succeeds, cookies are enabled, since 
//the cookie was successfully created.
if ( Get_Cookie( 'test' ) )
{

  

	cookie_set = true;
	// and these are the parameters for Delete_Cookie:
	// name, path, domain
	// make sure you use the same parameters in Set and Delete Cookie.
	Delete_Cookie('test', '/', '');
}
// if the Get_Cookie test fails, cookies 
//are not enabled for this session.
else
{
	//Cookies are not enabled
	document.write( 'cookies are not currently enabled.' );
        window.location = "/how-to-enable-cookies.asp";
	cookie_set = false;
}

