      function getURLParam() {
				var strReturn = "";
				var strHref = window.location.href;

				if ( strHref.indexOf("?") > -1 ){
					strReturn = strHref.substr(strHref.indexOf("?")+1);
				}
				return strReturn;
			}

			function getUrl(){
				var server = "home.vita-x.de";
				var institution = "013000145";
				var theme = "red"; // replace e.g. by "green" to get eServices in green

				var url = "https://"+server+"/eServices/embed.html?";
				if (getURLParam() != ""){
					url += getURLParam() + "&";
				}
				url += "institution=" + institution;
				if (theme != "") {
					url += "&theme=" + theme;
				}
				return url;
			}

			$(document).ready(function(){
				//Assign the ColorBox event to the eServices link
				$("a[rel='eServices']").fancybox({width:"100%", height:"100%", margin: 20, overlayOpacity: 0.7, overlayColor: '#000', href:getUrl()});
			});

