function GetCheckboxCookie(opt,pagina)
{
	var search = "checkboxRevelar=";
	var result = "yes";
	if (document.cookie.length > 0) {
		offset = document.cookie.indexOf(search);
		if (offset != -1) {
			offset += search.length;
			end = document.cookie.indexOf(";",offset);
			if (end == -1){
				end = document.cookie.length;
			}
			if(document.cookie.substring(offset,end) == result){
				if(pagina=='nav'){
					window.location.href="/SPhotoPrinting/$M=photoprinting";
					return;
				}
				else if(pagina=='home'){
					document.forms["f_conditions"].CO.checked="checked";
				}
			}
			else{
				if(opt==0){
					alert("Haz clic en 'Acepto las condiciones de uso'");
					window.location.href="/";
				}
				else if(opt==1) {
					alert("Haz clic en 'Acepto las condiciones de uso'");
				}
				return;
			} 
		}
	}
}

function CheckCookie()
{
	if(document.forms["f_conditions"].CO.checked){
		document.cookie = "checkboxRevelar=yes;";
		return;
	}
	document.cookie = "checkboxRevelar=no;";
	return;
}
