var cookiePrefsPopupWindow = "__realigro_prefs_popup_window_hide__";

function closePopupWindow(id, forget) {
	$(id).hide();

	var expire = null;
	if (forget == 1) {
		expire = 3650;
	}
	createCookie(cookiePrefsPopupWindow, 1, expire);
}

function impostaPreferenze() {
	createCookie(cookiePrefsPopupWindow, 1);
	location.href = '/account/prefs/';
}

document.observe("dom:loaded", function() {
	var rppwh = readCookie(cookiePrefsPopupWindow);
	var issetPrefs = readCookie("__realigro_prefs__");

	if (rppwh != 1 && issetPrefs == null) {
		$("preferenze_popup_window").show();
	}
});
