
/*
function personalizar2_esp() {
	if(document.location.host != "www.hoycinema.com" && document.location.host != "www1.hoycinema.com" && document.location.host != "www2.hoycinema.com") {
		var curCookie = "HOYCINEMA=" + escape(document.location.host) + "; expires=Fri, 31-Dec-2010 00:00:00 GMT;path=/;domain=.hoycinema.com";
		document.cookie = curCookie;
	}
}


function setCookie_esp(name, value, expires, path, domain, secure) {
	var curCookie = name + "=" + escape(value) + ((expires) ? "; expires=" + expires : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "");
	document.cookie = curCookie;
	personalizar();
}
    	
function getCookie_esp(name) {
	var dc = document.cookie;
	var prefix = name + "=";
	var begin = dc.indexOf("; " + prefix);
	if (begin == -1) {
		begin = dc.indexOf(prefix);
	if (begin != 0) return null;
	} else
		begin += 2;
	var end = document.cookie.indexOf(";", begin);
	if (end == -1)
		end = dc.length;
	return unescape(dc.substring(begin + prefix.length, end));
}


*/