		<!--//
		function getCookie(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 decodeURIComponent(dc.substring(begin + prefix.length, end));
		}
		var username = getCookie('username');
		if (username) {
			username = username.replace('+', ' ');
		}
		var userpass = getCookie('userpass');
		if (username && userpass) {
			document.write('<h2 style="color: #87cefa;">שלום '+username+'</h2>');
			document.write('<a href="https://theothermag.com/account">החשבון שלי</a>');
			document.write(' | <a href="https://theothermag.com/login?action=logout">יציאה</a>');
		} else {
		  document.write('<h2 style="color: #ffd700;">שלום אורח</h2>');
		  document.write('<a href="https://theothermag.com/purchase">רכישת מנוי</a>');
		  document.write(' | <a href="https://theothermag.com/login">כניסה למנויים</a>');
		}
		//-->
