/*
* env.js
*
*/

/*
 * Check Cookie
 */ 
function isValidCookie(){
	
	document.cookie="ch_access";
	if ( document.cookie.length == 0 ){
		return false;
	}

	return true;
}
