 
setNavigation();

function setNavigation()
{

	if(IsAuth)
	{
		var urpage = document.getElementById("urpage");
		urpage.href  = '/userchangedetails.aspx';
		urpage.innerHTML  = 'ההגדרות שלי';
		urpage.title  = '';
		
		var A2 = document.getElementById("A2");
		A2.href  = '/userlist.aspx';
		A2.innerHTML  = 'המשרות שבחרתי';
		A2.title  = '';
	}
	
	if(IsCompany != -1)
	{
		var aEmployerSite = document.getElementById("aEmployerSite");
		aEmployerSite.href  = '/Employer/JobsPanel/Default.aspx';
		aEmployerSite.innerHTML  = 'מעסיקים';
		aEmployerSite.title  = '';
	}
	
	if((isIE6 = /msie|MSIE 6/.test(navigator.userAgent)) && !checkCookieIE6Alert("IE6Alert"))
		setIE6Alert();
}

function User_LogOff(){location.href = "/User/LogOff.aspx";}

function setIE6Alert()
{
	var Content = document.createElement("div");
	Content.innerHTML = '<table width="100%" cellpadding="0" cellspacing="0" border="0" style="LINE-HEIGHT:18px"><tr><td class="BR1 BL1"><div style="height:80px;margin:10px;" class="AR PalebluBG PR30 PT10 B1">הנך משתמש בגרסת דפדפן ישנה של אינטרנט אקספלורר. ייתכן וחלק מהפעולות באתר לא יתבצעו כראוי.<br/>מומלץ לשדרג את הדפדפן. <br/><a href="http://www.microsoft.com/israel/windows/internet-explorer/default.aspx" target="_blank">לחץ כאן להורדת גרסה חדשה של הדפדפן</a></div></td></tr></table>';
	document.getElementById("divUserNavigation").appendChild(Content);
	setCookieIE6Alert("IE6Alert", "1", "/");
}

function checkCookieIE6Alert(name)
{
	return(document.cookie.indexOf(name)==-1)?false:true;
}

function setCookieIE6Alert(name, value, path, expires , domain, secure) 
{
	var curCookie = name + '=' + escape(value) + ((expires) ? '; expires=' + expires.toGMTString() : '') + ((path) ? '; path=' + path : '') + ((domain) ? '; domain=' + domain : '') + ((secure) ? '; secure' : '');
	document.cookie = curCookie;
}
