var ShowIngelogd
var ShowUitgelogd

ShowIngelogd = '<h5>Welkom <strong>' + window.loginFirstName + ' ' + window.loginLastName + '</strong>.</h5>';
ShowIngelogd = ShowIngelogd + '&nbsp;&nbsp;&nbsp;&gt;&nbsp;<a href="membership/account.asp" class=\"member_colorbox\">Mijn Klantenrekening</a><br>';		
ShowIngelogd = ShowIngelogd + '&nbsp;&nbsp;&nbsp;&gt;&nbsp;<a href="membership/update.asp" class=\"member_colorbox\">Klantgegevens Wijzigen</a><br>';
ShowIngelogd = ShowIngelogd + "&nbsp;&nbsp;&nbsp;&gt;&nbsp;<a href=\"" + MyAccount.replace('Auto=Off','opener=null') + "&action=logout&sitename=" + escape(sitename) + "&GoBack=" + escape(window.location) + "\" class=\"uitlog_colorbox\">Uitloggen</a>";

ShowUitgelogd = "<a href=\"" + MyAccount.replace('Auto=Off','') + "sitename=" + escape(sitename) + "&GoBack=" + escape(window.location) + "\" class='inlog_colorbox'>Inloggen</a><br />";
ShowUitgelogd = ShowUitgelogd + "<a href=\"" + MyAccount.replace('login.asp', 'apply.asp') + "&amp;sitename=" + escape(sitename) + "&amp;GoBack=" + escape(window.location) + "Login\" class=\"member_colorbox\">Registreren</a>";

function membersettings(){
if (window.sitename){
	if (window.loginFirstName && window.loginFirstName.length){
			document.getElementById("winkelwagen-inloggen").innerHTML=ShowIngelogd;
		}
		else
		{
			document.getElementById("winkelwagen-inloggen").innerHTML=ShowUitgelogd;
		}
	$(document).ready(function(){
		$(".inlog_colorbox").colorbox({
			onClosed:function(){window.location.reload()},
			width:"750px", height:"452px", iframe:true, scrolling: false, overlayClose: false
		});
		$(".member_colorbox").colorbox({
			onClosed:function(){window.location.reload()},
			width:"750px", height:"80%", iframe:true, scrolling: true, overlayClose: false
		});
		$(".uitlog_colorbox").colorbox({
			onClosed:function(){window.location.reload()},
			width:"750px", height:"452px", iframe:true, scrolling: false, overlayClose: false
		});
	});

	}
}