function setCookie(c_name,value,expiredays){
	var exdate=new Date();
	exdate.setDate(exdate.getDate()+(expiredays));
	document.cookie=c_name+ "=" +escape(value)+	((expiredays==null) ? "" : "; expires="+exdate.toGMTString()) + "; path=/; domain=fusionfall.com";
}
/**********  Get Cookie ***********/
function getCookie(c_name){
	if (document.cookie.length > 1){
	trimCookie	= document.cookie.replace(" =", "="); //trim whitespace
	aCookie = trimCookie.split("; ");
	//alert(aCookie);
		for(i=0; i < aCookie.length; i++){
		aCrumb = aCookie[i].split("=");
			if(c_name == aCrumb[0]){
				return aCrumb[1];
			}
		}
		return false;
	}
}
