diff --git a/modules/discojuice/www/discojuice/discojuice.js b/modules/discojuice/www/discojuice/discojuice.js
index 6423b1312869d2b8fa40dd1324f1e1fe55bd5a31..6c48104d6de2f48a74bee7fffafdd30e22246a80 100644
--- a/modules/discojuice/www/discojuice/discojuice.js
+++ b/modules/discojuice/www/discojuice/discojuice.js
@@ -29,6 +29,7 @@ DiscoJuice.Constants = {
 		'HR': 'Croatia',
 		'IE': 'Ireland',
 		'IT': 'Italy',
+		'JP': 'Japan',
 		'HU': 'Hungary',
 		'LU': 'Luxembourg',
 		'NL': 'Netherlands',
@@ -54,6 +55,7 @@ DiscoJuice.Constants = {
 		'HR': 'hr.png',
 		'IE': 'ie.png',
 		'IT': 'it.png',
+		'JP': 'jp.png',
 		'HU': 'hu.png',
 		'LU': 'lu.png',
 		'NL': 'nl.png',
@@ -367,7 +369,7 @@ DiscoJuice.UI = {
 		if (showmore) {
 			var moreLink = '<a class="discojuice_showmore textlink" href="">Results limited to ' + show + ' entries – show more…</a>';
 			this.popup.find("p.discojuice_moreLinkContainer").empty().append(moreLink);
-			this.popup.find("p.discojuice_moreLinkContainer a.discojuice_showmore").click(function(e) {
+			this.popup.find("p.discojuice_moreLinkContainer a.discojuice_showmore").click(function(event) {
 				event.preventDefault();
 				that.control.increase();
 			});
@@ -469,9 +471,11 @@ DiscoJuice.UI = {
 
 		if (this.parent.Utils.options.get('location', false) && navigator.geolocation) {
 			var that = this;
-			$("#locateme").click(function(event) {
+			$("a#locateme").click(function(event) {
+				that.parent.Utils.log('Locate me. Detected click event.');
 				var imgpath = that.parent.Utils.options.get('discoPath', '') + 'images/';
 				event.preventDefault();
+ 				event.stopPropagation();
 				$("div.locatemebefore").hide();
 				$("div.locatemeafter").html('<div class="loadingData" ><img src="' + imgpath + 'spinning.gif" /> Getting your location...</div>');
 				that.control.locateMe();
@@ -532,11 +536,19 @@ DiscoJuice.Control = {
 		var that = this;		
 		if (this.data) return;
 		var metadataurl = this.parent.Utils.options.get('metadata');
+		var parameters = {};
 		
 		this.parent.Utils.log('metadataurl is ' + metadataurl);
 		if (!metadataurl) return;
+
+		// If SP EntityID is set in configuration make sure it is sent as a parameter
+		// to the feed endpoint.
+		var discosettings = this.parent.Utils.options.get('disco');
+		if (discosettings) {
+			parameters.entityID = discosettings.spentityid;
+		}
 		
-		$.getJSON(metadataurl, function(data) {
+		$.getJSON(metadataurl, parameters, function(data) {
 			that.data = data;
 			that.parent.Utils.log('Successfully loaded metadata (' + data.length + ')');
 			that.postLoad();
@@ -1006,6 +1018,8 @@ DiscoJuice.Control = {
 		iframeurl = writableStore + '?entityID=' + escape(spentityid) + '&IdPentityID=' + 
 			escape(entityID) + '&isPassive=true&returnIDParam=bogus&return=' + escape(returnurl);
 			
+		this.parent.Utils.log('DiscoJuice.Control discoWrite iframeURL (' + iframeurl + ') ');
+			
 		html = '<iframe src="' + iframeurl + '" style="display: none"></iframe>';
 		this.ui.addContent(html);
 		return true;
diff --git a/modules/discojuice/www/discojuice/discojuice.min.js b/modules/discojuice/www/discojuice/discojuice.min.js
index ec38d5b693ea9e38050b623c9ffe8a61edf03418..1a770373146411d7ce3bef0d92a69c707109e038 100644
--- a/modules/discojuice/www/discojuice/discojuice.min.js
+++ b/modules/discojuice/www/discojuice/discojuice.min.js
@@ -1 +1 @@
-(function($3){var $5={},$6="doTimeout",$7=Array.prototype.slice;$3[$6]=function(){return $4.apply(window,[0].concat($7.call(arguments)));};$3.fn[c]=function(){var $11=$7.call(arguments),$9=$4.apply(this,[$6+$11[0]].concat($11));return typeof $11[0]==="number"||typeof $11[1]==="number"?this:$9;};function $4($8){var $b=this,$c,$d={},$e=$8?$3.fn:$3,$f=arguments,$10=4,$11=$f[1],$12=$f[2],$13=$f[3];if(typeof $11!=="string"){$10--;$11=$8=0;$12=$f[1];$13=$f[2];}if($8){$c=$b.eq(0);$c.data($8,$d=$c.data($8)||{});}else {if($11){$d=$5[$11]||($5[$11]={});}}$d.id&&clearTimeout($d.id);delete $d.id;function $9(){if($8){$c.removeData($8);}else {if($11){delete $5[$11];}}}function $a(){$d.id=setTimeout(function(){$d.fn();},$12);}if($13){$d.fn=function($14){if(typeof $13==="string"){$13=$e[$13];}$13.apply($b,$7.call($f,$10))===true&&!$14?$a():$9();};$a();}else {if($d.fn){$12===undefined?$9():$d.fn($12===false);return true;}else {$9();}}}})(jQuery);if(typeof console=="undefined")var $1={log:function(){;}};var $2={};$2.Constants={"Countries":{'CZ':'Czech','DK':'Denmark','FI':'Finland','FR':'France','DE':'Germany','GR':'Greece','HR':'Croatia','IE':'Ireland','IT':'Italy','HU':'Hungary','LU':'Luxembourg','NL':'Netherlands','NO':'Norway','PL':'Poland','PT':'Portugal','SI':'Slovenia','ES':'Spain','SE':'Sweden','CH':'Switzerland','TR':'Turkey','US':'USA','GB':'UK','XX':'Experimental'},"Flags":{'CZ':'cz.png','DK':'dk.png','FI':'fi.png','FR':'fr.png','DE':'de.png','GR':'gr.png','HR':'hr.png','IE':'ie.png','IT':'it.png','HU':'hu.png','LU':'lu.png','NL':'nl.png','NO':'no.png','PL':'pl.png','PT':'pt.png','SI':'si.png','ES':'es.png','SE':'se.png','CH':'ch.png','TR':'tr.png','GB':'gb.png','US':'us.png'}};$2.Utils={"log":function($15){$1.log($15);},"options":function(){var $16;return {"get":function($17,$18){if(!$16)return $18;if(!$16[$17])return $18;return $16[$17];},"set":function($19){$16=$19;},"update":function($17,$1a){$16[$17]=$1a;}};}(),"createCookie":function($1a,$1b){var $1b=$1b||'EntityID';var $1c='_DiscoJuice_'+$1b;var $1d=1825;if($1d){var $1e=new Date();$1e.setTime($1e.getTime()+($1d*24*60*60*1000));var $1f="; expires="+$1e.toGMTString();}else var $1f="";document.cookie=$1c+"="+escape($1a)+$1f+"; path=/";},"readCookie":function($1b){var $1b=$1b||'EntityID';var $1c='_DiscoJuice_'+$1b;var $1d=1825;var $20=$1c+"=";var $21=document.cookie.split(';');for(var $10=0;$10<$21.length;$10++){var $6=$21[$10];while($6.charAt(0)==' ')$6=$6.substring(1,$6.length);if($6.indexOf($20)==0)return unescape($6.substring($20.length,$6.length));}return null;},"eraseCookie":function($1b){var $1b=$1b||'EntityID';var $1c='_DiscoJuice_'+$1b;$2.createCookie($1c,"",-1);},"searchMatch":function($22,$23){if($22.title.toLowerCase().search($23.toLowerCase())!==-1)return true;var $17,$10,$24;if($22.keywords){for($17 in $22.keywords){$24=$22.keywords[key];for($10=0;$10<$24.length;$10++){if($24[$10].toLowerCase().search($23.toLowerCase())!==-1)return $24[$10];}}}return false;},"calculateDistance":function($25,$26,$27,$28){var $29=6371;var $2a=this.toRad($27-$25);var $2b=this.toRad($28-$26);var $5=Math.sin($2a/2)*Math.sin($2a/2)+Math.cos(this.toRad($25))*Math.cos(this.toRad($27))*Math.sin($2b/2)*Math.sin($2b/2);var $6=2*Math.atan2(Math.sqrt($5),Math.sqrt(1-$5));var $7=$29*$6;return $7;},"toRad":function($2c){return $2c*Math.PI/180;}};(function($3){$3.fn.DiscoJuice=function($16){return this.each(function(){$2.Utils.options.set($16);$2.Control.ui=$2.UI;$2.UI.control=$2.Control;$2.UI.enable(this);});};})(jQuery);if(typeof $2=="undefined")var $2={};$2.UI={"parent":$2,"control":null,"popup":null,"resulthtml":'Loading data…',"show":function(){this.control.load();this.popup.fadeIn("slow");$("div#discojuice_overlay").show();this.focusSearch();},"focusSearch":function(){$("input.discojuice_search").focus();},"hide":function(){$("div#discojuice_overlay").fadeOut("slow");this.popup.fadeOut("slow");},"clearItems":function(){this.resulthtml='';},"addItem":function($22,$2d,$2e,$2f){var $30='';var $31='';if($22.weight<-50)$31+='hothit';var $32=this.parent.Utils.options.get('discoPath','')+'logos/';var $33=this.parent.Utils.options.get('discoPath','')+'flags/';var $34=false;var $35=this.parent.Utils.options.get('debug.weight',false);if($22.icon){$30+='<img class="logo" src="'+$32+$22.icon+'" />';$34=true;}$30+='<span class="title">'+$22.title+'</span>';if($2e&&$2e!==true){$30+='<span class="substring">– '+$2e+'</span>';}else if($22.descr){$30+='<span class="substring">– '+$22.descr+'</span>';}if($2d||($2f!=undefined)){$30+='<span class="location">';if($2d){$30+='<span class="country">';if($2d.flag)$30+='<img src="'+$33+$2d.flag+'" alt="'+escape($2d.country)+'" /> ';$30+=$2d.country+'</span>';}if($2f!=undefined){if($2f<1){$30+='<span class="distance">Nearby</span>';}else {$30+='<span class="distance">'+Math.round($2f)+' km'+'</span>';}}$30+='</span>';}if($35){$30+='<div class="debug">';if($22.subID){$30+='<input value="'+$22.subID+'" />';}var $36=0;if($22.weight){$36+=$22.weight;}if($22.distanceweight){$36+=$22.distanceweight;}$30+='Weight <strong style="color: #888">'+Math.round(100*$36)/100+'</strong> ';if($22.weight){$30+=' (base '+$22.weight+')   ';}if($22.distanceweight){$30+='(dist '+Math.round(100*$22.distanceweight)/100+')';}$30+='</div>';}if($34){$30+='<hr style="clear: both; height: 0px; visibility:hidden" />';}var $37=$22.entityID;if($22.subID){$37+='#'+$22.subID;}$30='<a href="" class="'+$31+'" rel="'+escape($37)+'" title="'+escape($22.title)+'">'+$30+'</a>';this.resulthtml+=$30;},"refreshData":function($38,$39,$3a){var $3b=this;this.parent.Utils.log('DiscoJuice.UI refreshData()');this.popup.find("div.scroller").empty().append(this.resulthtml);this.popup.find("div.scroller a").each(function(){var $3d=$3b;$(this).click(function($3e){$3e.preventDefault();$3d.hide();var $37=unescape($(this).attr('rel'));var $3f=$37;var $40=undefined;if($37.match(/^.*#.+?$/)){var $41=/^(.*)#(.+?)$/.exec($37);$3f=$41[1];$40=$41[2];}$3d.control.selectProvider($3f,$40);});});if($38){var $3c='<a class="discojuice_showmore textlink" href="">Results limited to '+$39+' entries – show more…</a>';this.popup.find("p.discojuice_moreLinkContainer").empty().append($3c);this.popup.find("p.discojuice_moreLinkContainer a.discojuice_showmore").click(function($9){event.preventDefault();$3b.control.increase();});}else {this.popup.find("p.discojuice_moreLinkContainer").empty();if($3a>10){var $3c='<span style="color: #888">'+$3a+' entries listed</span>';this.popup.find("p.discojuice_moreLinkContainer").append($3c);}}},"enable":function($42){var $43=this.parent.Utils.options.get('discoPath','')+'images/';var $44=this.parent.Utils.options.get('textSearch','or search for a provider, in example Univerity of Oslo');var $45=this.parent.Utils.options.get('textHelp','Help me, I cannot find my provider');var $46=this.parent.Utils.options.get('textHelpMore','If your institusion is not connected to Foodle, you may create a new account using any of the Guest providers, such as <strong>OpenIdP (Guest users)</strong>.');var $47='<div style="display: none" class="discojuice">'+'<div class="top">'+'<a href="#" class="discojuice_close">&nbsp;</a>'+'<p class="discojuice_maintitle">'+this.parent.Utils.options.get('title','Title')+'</p>'+'<p class="discojuice_subtitle">'+this.parent.Utils.options.get('subtitle','Subtitle')+'</p>'+'</div>'+'<div class="discojuice_listContent" style="">'+'<div class="scroller">'+'<div class="loadingData" ><img src="'+$43+'spinning.gif" /> Loading list of providers...</div>'+'</div>'+'<p class="discojuice_moreLinkContainer" style="margin: 0px; padding: 4px">&nbsp;</p>'+'</div>'+'<div id="search" class="" >'+'<p><input type="search" class="discojuice_search" results=5 autosave="discojuice" name="searchfield" placeholder="'+$44+'" value="" /></p>'+'<div class="discojuice_whatisthis" style="margin-top: 15px; font-size: 11px;">'+'<a  href="#" class="textlink discojuice_what">'+$45+'</a>'+'<p class="discojuice_whattext">'+$46+'</p>'+'</div>'+'</div>'+'<div id="locatemediv">'+'<div class="locatemebefore">'+'<p style="margin-top: 10px"><a id="locateme" href="">'+'<img style="float: left; margin-right: 5px; margin-top: -10px" src="'+$43+'target.png" alt="locate me..." />'+'Locate me more accurately using HTML5 Geo-Location</a>'+'</p>'+'<p style="color: #999" id="locatemeinfo"></p>'+'</div>'+'<div style="clear: both" class="locatemeafter"></div>'+'</div>'+'<div style="display: none">'+'<button id="discojuiceextesion_listener" />'+'</div>'+'<div class="filters bottom">'+'<p style="margin 0px; text-align: right; color: #ccc; font-size: 75%">DiscoJuice &copy; UNINETT</p>'+'</div>'+'</div>';var $3b=this;if(this.parent.Utils.options.get('overlay',true)===true){var $48='<div id="discojuice_overlay" style="display: none"></div>';$($48).appendTo($("body"));}this.popup=$($47).appendTo($("body"));if(this.parent.Utils.options.get('always',false)===true){this.popup.find(".discojuice_close").hide();this.show();}else {$($42).click(function($3e){$3e.preventDefault();$3b.show();return false;});}this.popup.find("#discojuiceextesion_listener").click(function(){$3b.control.discojuiceextension();});this.popup.find(".discojuice_close").click(function(){$3b.hide();});this.popup.find(".discojuice_what").click(function(){$3b.popup.find(".discojuice_whatisthis").toggleClass("show");});if(this.parent.Utils.options.get('location',false)&&navigator.geolocation){var $3b=this;$("#locateme").click(function($3e){var $43=$3b.parent.Utils.options.get('discoPath','')+'images/';$3e.preventDefault();$("div.locatemebefore").hide();$("div.locatemeafter").$47('<div class="loadingData" ><img src="'+$43+'spinning.gif" /> Getting your location...</div>');$3b.control.locateMe();});}else {$("dd#locatemediv").hide();}},"setLocationText":function($47){return $("div.locatemeafter").$47($47);},"addContent":function($47){return $($47).appendTo($("body"));},"addFilter":function($47){return $($47).prependTo(this.popup.find('.filters'));}};if(typeof $2=="undefined")var $2={};$2.Control={"parent":$2,"ui":null,"data":null,"filters":{},"location":null,"showdistance":false,"maxhits":25,"extensionResponse":null,"load":function(){var $3b=this;if(this.data)return ;var $49=this.parent.Utils.options.get('metadata');this.parent.Utils.log('metadataurl is '+$49);if(!$49)return ;$.getJSON($49,function($4a){$3b.data=$4a;$3b.parent.Utils.log('Successfully loaded metadata ('+$4a.length+')');$3b.postLoad();});},"postLoad":function(){if(!this.data)return ;for(i=0;i<this.data.length;i++){if(!this.data[i].title){if(this.data[i].DisplayNames){this.data[i].title=this.data[i].DisplayNames[0].value;}}}this.readCookie();this.readExtensionResponse();this.prepareData();this.discoReadSetup();this.discoSubReadSetup();this.searchboxSetup();if(this.parent.Utils.options.get('country',false)){this.filterCountrySetup();}this.getCountry();},"readCookie":function(){if(this.parent.Utils.options.get('cookie',false)){var $4b=this.parent.Utils.readCookie();var $3f=$4b;var $40=undefined;if($4b&&$4b.match(/^.*#.+?$/)){var $41=/^(.*)#(.+?)$/.exec($4b);$3f=$41[1];$40=$41[2];}this.parent.Utils.log('COOKIE read '+$4b);if($4b)this.setWeight(-100,$3f,$40);}},"readExtensionResponse":function(){if(!this.extensionResponse)return ;if(!!this.extensionResponse.autologin){this.selectProvider(this.extensionResponse.entityID,this.extensionResponse.subID);}if(this.extensionResponse.selectedRelID){this.setWeight(-100,this.extensionResponse.entityID,this.extensionResponse.subID);}this.parent.Utils.log('DiscoJuice Extension readExtensionResponse '+this.extensionResponse.entityID+' '+this.extensionResponse.subID);},"discojuiceextension":function(){var $4b=$("meta#discojuiceextension_id").attr('content');if(!$4b)return ;var $3f=$4b;var $40=undefined;if($4b&&$4b.match(/^.*#.+?$/)){var $41=/^(.*)#(.+?)$/.exec($4b);$3f=$41[1];$40=$41[2];}this.parent.Utils.log('DiscoJuice Extension read '+$4b+' '+$3f+' '+$40);var $4c=$("meta#discojuice_autologin").attr('content');this.extensionResponse={selectedRelID:$4b,entityID:$3f,subID:$40,autologin:$4c};},"setWeight":function($4d,$3f,$40){for(i=0;i<this.data.length;i++){if(this.data[i].entityID!==$3f)continue;if($40&&!this.data[i].subID)continue;if($40&&$40!==this.data[i].subID)continue;if(this.data[i].subID&&!$40)continue;if(isNaN(this.data[i].weight))this.data[i].weight=0;this.data[i].weight+=$4d;this.parent.Utils.log('COOKIE Setting weight to '+this.data[i].weight);return ;}this.parent.Utils.log('DiscoJuice setWeight failer (no entries found for) '+$3f+' # '+$40);},"discoResponse":function($4e,$3f,$40){this.parent.Utils.log('DiscoResponse Received from ['+$4e+'] entityID: '+$3f+' subID: '+$40);var $4f=this.parent.Utils.options.get('disco');if($4f){var $50=$4f.subIDstores;if($50){if($50[$3f]&&!$40){this.parent.Utils.log('Ignoring discoResponse from entityID: '+$3f+' because subID was required and not provided');return ;}}}this.setWeight(-100,$3f,$40);this.prepareData();},"calculateDistance":function(){var $51,$52;for(var $10=0;$10<this.data.length;$10++){if(this.data[i].geo){$51=[];$52=[];if(typeof (this.data[i].geo)=='object'&&(this.data[i].geo instanceof Array)){$51=this.data[i].geo;}else {$51.push(this.data[i].geo);}for(var $12=0;$12<$51.length;$12++){$52.push(this.parent.Utils.calculateDistance($51[$12].lat,$51[$12].lon,this.location[0],this.location[1]));}this.data[i].distance=Math.min.apply(Math,$52);this.data[i].distanceweight=(2*Math.log(this.data[i].distance+1))-10;}}this.showdistance=true;this.prepareData();},"locateMe":function(){var $3b=this;this.parent.Utils.log('Locate Me');if(navigator.geolocation){navigator.geolocation.getCurrentPosition(function($53){$3b.ui.setLocationText('You are here: '+$53.coords.latitude+', '+$53.coords.longitude+'. Nearby providers shown on top.');$3b.location=[$53.coords.latitude,$53.coords.longitude];$3b.calculateDistance();},function($54){switch($54.code){case $54.TIMEOUT:$3b.ui.setLocationText('Timeout');break;case $54.POSITION_UNAVAILABLE:$3b.ui.setLocationText('Position unavailable');break;case $54.PERMISSION_DENIED:$3b.ui.setLocationText('Permission denied');break;case $54.UNKNOWN_ERROR:$3b.ui.setLocationText('Unknown error');break;}});}else {this.parent.Utils.log('Did not find navigator.geolocation');}},"increase":function(){this.maxhits+=100;this.prepareData();},"prepareData":function($55){var $55=($55?true:false);this.parent.Utils.log('DiscoJuice.Control prepareData()');var $56,$10,$57,$2e;var $58=false;var $23=this.getTerm();var $59=this.getCategories();if(!this.data)return ;this.data.sort(function($5,$4){var $5d,$5e;$5d=($5.weight?$5.weight:0);$5e=($4.weight?$4.weight:0);if($5.distanceweight)$5d+=$5.distanceweight;if($4.distanceweight)$5e+=$4.distanceweight;return ($5d-$5e);});if($23||$59){this.ui.popup.find("p.discojuice_showall").show();}else {this.ui.popup.find("p.discojuice_showall").hide();}this.ui.clearItems();$56=0;for($10=0;$10<this.data.length;$10++){$57=this.data[i];if(!$57.weight)$57.weight=0;if($23){$2e=this.parent.Utils.searchMatch($57,$23);if($2e===false&&$57.weight>-50)continue;}else {$2e=null;}if($59&&$59.country){if(!$57.country)continue;if($57.country!=='_all_'&&$59.country!==$57.country&&$57.weight>-50)continue;}if(++$56>this.maxhits){$58=true;break;}var $2d=null;if($57.country){var $5a=(this.parent.Constants.Countries[current.country]?this.parent.Constants.Countries[current.country]:$57.country);if($5a!=='_all_'){var $5b=(this.parent.Constants.Flags[current.country]?this.parent.Constants.Flags[current.country]:undefined);$2d={'country':$5a,'flag':$5b};}}var $5c=$57.descr||null;this.ui.addItem($57,$2d,$2e,$57.distance);}this.ui.refreshData($58,this.maxhits,$56);},"selectProvider":function($3f,$40){var $5f;var $3b=this;var $60=$3b.discoWrite($3f,$40);if(this.parent.Utils.options.get('cookie',false)){var $37=$3f;if($40)$37+='#'+$40;this.parent.Utils.log('COOKIE write '+$37);this.parent.Utils.createCookie($37);}var $61=null;for(i=0;i<this.data.length;i++){if(this.data[i].entityID==$3f){if(!$40||$40==this.data[i].subID){$61=this.data[i];}}}$5f=this.parent.Utils.options.get('callback');if($5f){if($60){$.doTimeout(1000,function(){$5f($61);});}else {$5f($61);}return ;}},"discoReadSetup":function(){var $4f=this.parent.Utils.options.get('disco');if(!$4f)return ;var $47='';var $62=$4f.url;var $63=$4f.spentityid;var $50=$4f.stores;var $10;var $64;if(!$50)return ;for($10=0;$10<$50.length;$10++){$64=$50[$10];this.parent.Utils.log('Setting up DisoJuice Read from Store ['+$64+']');iframeurl=$64+'?entityID='+escape($63)+'&isPassive=true&returnIDParam=entityID&return='+escape($62);$47='<iframe src="'+iframeurl+'" style="display: none"></iframe>';this.ui.addContent($47);}},"discoSubReadSetup":function(){var $4f=this.parent.Utils.options.get('disco');if(!$4f)return ;var $47='';var $62=$4f.url;var $63=$4f.spentityid;var $50=$4f.subIDstores;var $10;var $64;if(!$50)return ;for(var $65 in $50){$62=$4f.url+'entityID='+escape($65);$64=$50[$65];this.parent.Utils.log('Setting up SubID DisoJuice Read from Store ['+$65+'] =>  ['+$64+']');iframeurl=$64+'?entityID='+escape($63)+'&isPassive=true&returnIDParam=subID&return='+escape($62);this.parent.Utils.log('iFrame URL is  ['+iframeurl+']');this.parent.Utils.log('return URL is  ['+$62+']');$47='<iframe src="'+iframeurl+'" style="display: none"></iframe>';this.ui.addContent($47);}},"discoWrite":function($3f,$40){var $4f=this.parent.Utils.options.get('disco');if(!$4f)return false;if(!$4f.writableStore)return false;var $47='';var $62=$4f.url;var $63=$4f.spentityid;var $66=$4f.writableStore;if($40){if($4f.subIDwritableStores&&$4f.subIDwritableStores[entityID]){$66=$4f.subIDwritableStores[entityID];this.parent.Utils.log('DiscoJuice.Control discoWrite('+$3f+') with SubID ['+$40+']');iframeurl=$66+escape($40);this.parent.Utils.log('DiscoJuice.Control discoWrite iframeURL ('+iframeurl+') ');$47='<iframe src="'+iframeurl+'" style="display: none"></iframe>';this.ui.addContent($47);return true;}else {return false;}}this.parent.Utils.log('DiscoJuice.Control discoWrite('+$3f+') to '+$66);iframeurl=$66+'?entityID='+escape($63)+'&IdPentityID='+escape($3f)+'&isPassive=true&returnIDParam=bogus&return='+escape($62);$47='<iframe src="'+iframeurl+'" style="display: none"></iframe>';this.ui.addContent($47);return true;},"searchboxSetup":function(){var $3b=this;this.ui.popup.find("input.discojuice_search").autocomplete({minLength:0,source:function($67,$68){var $23=$67.term;if($23.length===1)return ;$3b.prepareData();}});},"filterCountrySetup":function($69){var $3b=this;var $17;var $6a=this.parent.Utils.options.get('setCountry');if(!$69&&$6a){if(filterOptions[$6a])$69=$6a;}var $6b='<p class="discojuice_filter_country">Show providers in '+'<select class="discojuice_filterCountrySelect" name="filterCountrySelect">';if($69){$6b+='<option value="all">all countries</option>';}else {$6b+='<option value="all" selected="selected">all countries</option>';}for($17 in this.parent.Constants.Countries){if($17===$69){$6b+='<option value="'+$17+'" selected="selected">'+this.parent.Constants.Countries[key]+'</option>';}else {$6b+='<option value="'+$17+'" >'+this.parent.Constants.Countries[key]+'</option>';}}$6b+='</select>';$6b+=' <a class="discojuice_showall textlink" href="">show all countries</a>';$6b+='</p>';this.ui.addFilter($6b).find("select").change(function($3e){$3e.preventDefault();$3b.resetTerm();$3b.ui.focusSearch();if($3b.ui.popup.find("select.discojuice_filterCountrySelect").val()!=='all'){$3b.ui.popup.find("a.discojuice_showall").show();}else {$3b.ui.popup.find("a.discojuice_showall").hide();}$3b.prepareData();});this.ui.popup.find("a.discojuice_showall").click(function($3e){$3e.preventDefault();$3b.resetCategories();$3b.resetTerm();$3b.prepareData(true);$3b.ui.focusSearch();$3b.ui.popup.find("a.discojuice_showall").hide();});},"setCountry":function($6c){if(this.parent.Constants.Countries[country]){this.ui.popup.find('select.discojuice_filterCountrySelect').val($6c);this.prepareData();}},"setPosition":function($6d,$6e){this.location=[$6d,$6e];this.calculateDistance();},"getCountry":function(){var $6f=this.parent.Utils.options.get('countryAPI',false);var $3b=this;if($6f){var $70=this.parent.Utils.readCookie('Country2');var $71=parseFloat(this.parent.Utils.readCookie('GeoLat'));var $72=parseFloat(this.parent.Utils.readCookie('GeoLon'));if($70){this.setCountry($70);this.parent.Utils.log('DiscoJuice getCountry() : Found country in cache: '+$70);if($71&&$72){this.setPosition($71,$72);}}else {$.getJSON($6f,function($4a){if($4a.status=='ok'&&$4a.country){$3b.parent.Utils.createCookie($4a.country,'Country2');$3b.setCountry($4a.country);$3b.parent.Utils.log('DiscoJuice getCountry() : Country lookup succeeded: '+$4a.country);if($4a.geo&&$4a.geo.lat&&$4a.geo.lon){$3b.setPosition($4a.geo.lat,$4a.geo.lon);$3b.parent.Utils.createCookie($4a.geo.lat,'GeoLat');$3b.parent.Utils.createCookie($4a.geo.lon,'GeoLon');}}else {$3b.parent.Utils.log('DiscoJuice getCountry() : Country lookup failed: '+($4a.error||''));}});}}},"resetCategories":function(){this.ui.popup.find("select.discojuice_filterCountrySelect").val('all');},"getCategories":function(){var $73={};var $1b,$6c;$1b=this.ui.popup.find("select.discojuice_filterTypeSelect").val();if($1b&&$1b!=='all'){$73.type=$1b;}$6c=this.ui.popup.find("select.discojuice_filterCountrySelect").val();if($6c&&$6c!=='all'){$73.country=$6c;}return $73;},"getTerm":function(){return this.ui.popup.find("input.discojuice_search").val();},"resetTerm":function(){this.ui.popup.find("input.discojuice_search").val('');}};
+(function($3){var $5={},$6="doTimeout",$7=Array.prototype.slice;$3[$6]=function(){return $4.apply(window,[0].concat($7.call(arguments)));};$3.fn[c]=function(){var $11=$7.call(arguments),$9=$4.apply(this,[$6+$11[0]].concat($11));return typeof $11[0]==="number"||typeof $11[1]==="number"?this:$9;};function $4($8){var $b=this,$c,$d={},$e=$8?$3.fn:$3,$f=arguments,$10=4,$11=$f[1],$12=$f[2],$13=$f[3];if(typeof $11!=="string"){$10--;$11=$8=0;$12=$f[1];$13=$f[2];}if($8){$c=$b.eq(0);$c.data($8,$d=$c.data($8)||{});}else {if($11){$d=$5[$11]||($5[$11]={});}}$d.id&&clearTimeout($d.id);delete $d.id;function $9(){if($8){$c.removeData($8);}else {if($11){delete $5[$11];}}}function $a(){$d.id=setTimeout(function(){$d.fn();},$12);}if($13){$d.fn=function($14){if(typeof $13==="string"){$13=$e[$13];}$13.apply($b,$7.call($f,$10))===true&&!$14?$a():$9();};$a();}else {if($d.fn){$12===undefined?$9():$d.fn($12===false);return true;}else {$9();}}}})(jQuery);if(typeof console=="undefined")var $1={log:function(){;}};var $2={};$2.Constants={"Countries":{'CZ':'Czech','DK':'Denmark','FI':'Finland','FR':'France','DE':'Germany','GR':'Greece','HR':'Croatia','IE':'Ireland','IT':'Italy','JP':'Japan','HU':'Hungary','LU':'Luxembourg','NL':'Netherlands','NO':'Norway','PL':'Poland','PT':'Portugal','SI':'Slovenia','ES':'Spain','SE':'Sweden','CH':'Switzerland','TR':'Turkey','US':'USA','GB':'UK','XX':'Experimental'},"Flags":{'CZ':'cz.png','DK':'dk.png','FI':'fi.png','FR':'fr.png','DE':'de.png','GR':'gr.png','HR':'hr.png','IE':'ie.png','IT':'it.png','JP':'jp.png','HU':'hu.png','LU':'lu.png','NL':'nl.png','NO':'no.png','PL':'pl.png','PT':'pt.png','SI':'si.png','ES':'es.png','SE':'se.png','CH':'ch.png','TR':'tr.png','GB':'gb.png','US':'us.png'}};$2.Utils={"log":function($15){$1.log($15);},"options":function(){var $16;return {"get":function($17,$18){if(!$16)return $18;if(!$16[$17])return $18;return $16[$17];},"set":function($19){$16=$19;},"update":function($17,$1a){$16[$17]=$1a;}};}(),"createCookie":function($1a,$1b){var $1b=$1b||'EntityID';var $1c='_DiscoJuice_'+$1b;var $1d=1825;if($1d){var $1e=new Date();$1e.setTime($1e.getTime()+($1d*24*60*60*1000));var $1f="; expires="+$1e.toGMTString();}else var $1f="";document.cookie=$1c+"="+escape($1a)+$1f+"; path=/";},"readCookie":function($1b){var $1b=$1b||'EntityID';var $1c='_DiscoJuice_'+$1b;var $1d=1825;var $20=$1c+"=";var $21=document.cookie.split(';');for(var $10=0;$10<$21.length;$10++){var $6=$21[$10];while($6.charAt(0)==' ')$6=$6.substring(1,$6.length);if($6.indexOf($20)==0)return unescape($6.substring($20.length,$6.length));}return null;},"eraseCookie":function($1b){var $1b=$1b||'EntityID';var $1c='_DiscoJuice_'+$1b;$2.createCookie($1c,"",-1);},"searchMatch":function($22,$23){if($22.title.toLowerCase().search($23.toLowerCase())!==-1)return true;var $17,$10,$24;if($22.keywords){for($17 in $22.keywords){$24=$22.keywords[key];for($10=0;$10<$24.length;$10++){if($24[$10].toLowerCase().search($23.toLowerCase())!==-1)return $24[$10];}}}return false;},"calculateDistance":function($25,$26,$27,$28){var $29=6371;var $2a=this.toRad($27-$25);var $2b=this.toRad($28-$26);var $5=Math.sin($2a/2)*Math.sin($2a/2)+Math.cos(this.toRad($25))*Math.cos(this.toRad($27))*Math.sin($2b/2)*Math.sin($2b/2);var $6=2*Math.atan2(Math.sqrt($5),Math.sqrt(1-$5));var $7=$29*$6;return $7;},"toRad":function($2c){return $2c*Math.PI/180;}};(function($3){$3.fn.DiscoJuice=function($16){return this.each(function(){$2.Utils.options.set($16);$2.Control.ui=$2.UI;$2.UI.control=$2.Control;$2.UI.enable(this);});};})(jQuery);if(typeof $2=="undefined")var $2={};$2.UI={"parent":$2,"control":null,"popup":null,"resulthtml":'Loading data…',"show":function(){this.control.load();this.popup.fadeIn("slow");$("div#discojuice_overlay").show();this.focusSearch();},"focusSearch":function(){$("input.discojuice_search").focus();},"hide":function(){$("div#discojuice_overlay").fadeOut("slow");this.popup.fadeOut("slow");},"clearItems":function(){this.resulthtml='';},"addItem":function($22,$2d,$2e,$2f){var $30='';var $31='';if($22.weight<-50)$31+='hothit';var $32=this.parent.Utils.options.get('discoPath','')+'logos/';var $33=this.parent.Utils.options.get('discoPath','')+'flags/';var $34=false;var $35=this.parent.Utils.options.get('debug.weight',false);if($22.icon){$30+='<img class="logo" src="'+$32+$22.icon+'" />';$34=true;}$30+='<span class="title">'+$22.title+'</span>';if($2e&&$2e!==true){$30+='<span class="substring">– '+$2e+'</span>';}else if($22.descr){$30+='<span class="substring">– '+$22.descr+'</span>';}if($2d||($2f!=undefined)){$30+='<span class="location">';if($2d){$30+='<span class="country">';if($2d.flag)$30+='<img src="'+$33+$2d.flag+'" alt="'+escape($2d.country)+'" /> ';$30+=$2d.country+'</span>';}if($2f!=undefined){if($2f<1){$30+='<span class="distance">Nearby</span>';}else {$30+='<span class="distance">'+Math.round($2f)+' km'+'</span>';}}$30+='</span>';}if($35){$30+='<div class="debug">';if($22.subID){$30+='<input value="'+$22.subID+'" />';}var $36=0;if($22.weight){$36+=$22.weight;}if($22.distanceweight){$36+=$22.distanceweight;}$30+='Weight <strong style="color: #888">'+Math.round(100*$36)/100+'</strong> ';if($22.weight){$30+=' (base '+$22.weight+')   ';}if($22.distanceweight){$30+='(dist '+Math.round(100*$22.distanceweight)/100+')';}$30+='</div>';}if($34){$30+='<hr style="clear: both; height: 0px; visibility:hidden" />';}var $37=$22.entityID;if($22.subID){$37+='#'+$22.subID;}$30='<a href="" class="'+$31+'" rel="'+escape($37)+'" title="'+escape($22.title)+'">'+$30+'</a>';this.resulthtml+=$30;},"refreshData":function($38,$39,$3a){var $3b=this;this.parent.Utils.log('DiscoJuice.UI refreshData()');this.popup.find("div.scroller").empty().append(this.resulthtml);this.popup.find("div.scroller a").each(function(){var $3d=$3b;$(this).click(function($3e){$3e.preventDefault();$3d.hide();var $37=unescape($(this).attr('rel'));var $3f=$37;var $40=undefined;if($37.match(/^.*#.+?$/)){var $41=/^(.*)#(.+?)$/.exec($37);$3f=$41[1];$40=$41[2];}$3d.control.selectProvider($3f,$40);});});if($38){var $3c='<a class="discojuice_showmore textlink" href="">Results limited to '+$39+' entries – show more…</a>';this.popup.find("p.discojuice_moreLinkContainer").empty().append($3c);this.popup.find("p.discojuice_moreLinkContainer a.discojuice_showmore").click(function($3e){$3e.preventDefault();$3b.control.increase();});}else {this.popup.find("p.discojuice_moreLinkContainer").empty();if($3a>10){var $3c='<span style="color: #888">'+$3a+' entries listed</span>';this.popup.find("p.discojuice_moreLinkContainer").append($3c);}}},"enable":function($42){var $43=this.parent.Utils.options.get('discoPath','')+'images/';var $44=this.parent.Utils.options.get('textSearch','or search for a provider, in example Univerity of Oslo');var $45=this.parent.Utils.options.get('textHelp','Help me, I cannot find my provider');var $46=this.parent.Utils.options.get('textHelpMore','If your institusion is not connected to Foodle, you may create a new account using any of the Guest providers, such as <strong>OpenIdP (Guest users)</strong>.');var $47='<div style="display: none" class="discojuice">'+'<div class="top">'+'<a href="#" class="discojuice_close">&nbsp;</a>'+'<p class="discojuice_maintitle">'+this.parent.Utils.options.get('title','Title')+'</p>'+'<p class="discojuice_subtitle">'+this.parent.Utils.options.get('subtitle','Subtitle')+'</p>'+'</div>'+'<div class="discojuice_listContent" style="">'+'<div class="scroller">'+'<div class="loadingData" ><img src="'+$43+'spinning.gif" /> Loading list of providers...</div>'+'</div>'+'<p class="discojuice_moreLinkContainer" style="margin: 0px; padding: 4px">&nbsp;</p>'+'</div>'+'<div id="search" class="" >'+'<p><input type="search" class="discojuice_search" results=5 autosave="discojuice" name="searchfield" placeholder="'+$44+'" value="" /></p>'+'<div class="discojuice_whatisthis" style="margin-top: 15px; font-size: 11px;">'+'<a  href="#" class="textlink discojuice_what">'+$45+'</a>'+'<p class="discojuice_whattext">'+$46+'</p>'+'</div>'+'</div>'+'<div id="locatemediv">'+'<div class="locatemebefore">'+'<p style="margin-top: 10px"><a id="locateme" href="">'+'<img style="float: left; margin-right: 5px; margin-top: -10px" src="'+$43+'target.png" alt="locate me..." />'+'Locate me more accurately using HTML5 Geo-Location</a>'+'</p>'+'<p style="color: #999" id="locatemeinfo"></p>'+'</div>'+'<div style="clear: both" class="locatemeafter"></div>'+'</div>'+'<div style="display: none">'+'<button id="discojuiceextesion_listener" />'+'</div>'+'<div class="filters bottom">'+'<p style="margin 0px; text-align: right; color: #ccc; font-size: 75%">DiscoJuice &copy; UNINETT</p>'+'</div>'+'</div>';var $3b=this;if(this.parent.Utils.options.get('overlay',true)===true){var $48='<div id="discojuice_overlay" style="display: none"></div>';$($48).appendTo($("body"));}this.popup=$($47).appendTo($("body"));if(this.parent.Utils.options.get('always',false)===true){this.popup.find(".discojuice_close").hide();this.show();}else {$($42).click(function($3e){$3e.preventDefault();$3b.show();return false;});}this.popup.find("#discojuiceextesion_listener").click(function(){$3b.control.discojuiceextension();});this.popup.find(".discojuice_close").click(function(){$3b.hide();});this.popup.find(".discojuice_what").click(function(){$3b.popup.find(".discojuice_whatisthis").toggleClass("show");});if(this.parent.Utils.options.get('location',false)&&navigator.geolocation){var $3b=this;$("a#locateme").click(function($3e){$3b.parent.Utils.log('Locate me. Detected click event.');var $43=$3b.parent.Utils.options.get('discoPath','')+'images/';$3e.preventDefault();$3e.stopPropagation();$("div.locatemebefore").hide();$("div.locatemeafter").$47('<div class="loadingData" ><img src="'+$43+'spinning.gif" /> Getting your location...</div>');$3b.control.locateMe();});}else {$("dd#locatemediv").hide();}},"setLocationText":function($47){return $("div.locatemeafter").$47($47);},"addContent":function($47){return $($47).appendTo($("body"));},"addFilter":function($47){return $($47).prependTo(this.popup.find('.filters'));}};if(typeof $2=="undefined")var $2={};$2.Control={"parent":$2,"ui":null,"data":null,"filters":{},"location":null,"showdistance":false,"maxhits":25,"extensionResponse":null,"load":function(){var $3b=this;if(this.data)return ;var $49=this.parent.Utils.options.get('metadata');var $4a={};this.parent.Utils.log('metadataurl is '+$49);if(!$49)return ;var $4b=this.parent.Utils.options.get('disco');if($4b){$4a.entityID=$4b.spentityid;}$.getJSON($49,$4a,function($4c){$3b.data=$4c;$3b.parent.Utils.log('Successfully loaded metadata ('+$4c.length+')');$3b.postLoad();});},"postLoad":function(){if(!this.data)return ;for(i=0;i<this.data.length;i++){if(!this.data[i].title){if(this.data[i].DisplayNames){this.data[i].title=this.data[i].DisplayNames[0].value;}}}this.readCookie();this.readExtensionResponse();this.prepareData();this.discoReadSetup();this.discoSubReadSetup();this.searchboxSetup();if(this.parent.Utils.options.get('country',false)){this.filterCountrySetup();}this.getCountry();},"readCookie":function(){if(this.parent.Utils.options.get('cookie',false)){var $4d=this.parent.Utils.readCookie();var $3f=$4d;var $40=undefined;if($4d&&$4d.match(/^.*#.+?$/)){var $41=/^(.*)#(.+?)$/.exec($4d);$3f=$41[1];$40=$41[2];}this.parent.Utils.log('COOKIE read '+$4d);if($4d)this.setWeight(-100,$3f,$40);}},"readExtensionResponse":function(){if(!this.extensionResponse)return ;if(!!this.extensionResponse.autologin){this.selectProvider(this.extensionResponse.entityID,this.extensionResponse.subID);}if(this.extensionResponse.selectedRelID){this.setWeight(-100,this.extensionResponse.entityID,this.extensionResponse.subID);}this.parent.Utils.log('DiscoJuice Extension readExtensionResponse '+this.extensionResponse.entityID+' '+this.extensionResponse.subID);},"discojuiceextension":function(){var $4d=$("meta#discojuiceextension_id").attr('content');if(!$4d)return ;var $3f=$4d;var $40=undefined;if($4d&&$4d.match(/^.*#.+?$/)){var $41=/^(.*)#(.+?)$/.exec($4d);$3f=$41[1];$40=$41[2];}this.parent.Utils.log('DiscoJuice Extension read '+$4d+' '+$3f+' '+$40);var $4e=$("meta#discojuice_autologin").attr('content');this.extensionResponse={selectedRelID:$4d,entityID:$3f,subID:$40,autologin:$4e};},"setWeight":function($4f,$3f,$40){for(i=0;i<this.data.length;i++){if(this.data[i].entityID!==$3f)continue;if($40&&!this.data[i].subID)continue;if($40&&$40!==this.data[i].subID)continue;if(this.data[i].subID&&!$40)continue;if(isNaN(this.data[i].weight))this.data[i].weight=0;this.data[i].weight+=$4f;this.parent.Utils.log('COOKIE Setting weight to '+this.data[i].weight);return ;}this.parent.Utils.log('DiscoJuice setWeight failer (no entries found for) '+$3f+' # '+$40);},"discoResponse":function($50,$3f,$40){this.parent.Utils.log('DiscoResponse Received from ['+$50+'] entityID: '+$3f+' subID: '+$40);var $51=this.parent.Utils.options.get('disco');if($51){var $52=$51.subIDstores;if($52){if($52[$3f]&&!$40){this.parent.Utils.log('Ignoring discoResponse from entityID: '+$3f+' because subID was required and not provided');return ;}}}this.setWeight(-100,$3f,$40);this.prepareData();},"calculateDistance":function(){var $53,$54;for(var $10=0;$10<this.data.length;$10++){if(this.data[i].geo){$53=[];$54=[];if(typeof (this.data[i].geo)=='object'&&(this.data[i].geo instanceof Array)){$53=this.data[i].geo;}else {$53.push(this.data[i].geo);}for(var $12=0;$12<$53.length;$12++){$54.push(this.parent.Utils.calculateDistance($53[$12].lat,$53[$12].lon,this.location[0],this.location[1]));}this.data[i].distance=Math.min.apply(Math,$54);this.data[i].distanceweight=(2*Math.log(this.data[i].distance+1))-10;}}this.showdistance=true;this.prepareData();},"locateMe":function(){var $3b=this;this.parent.Utils.log('Locate Me');if(navigator.geolocation){navigator.geolocation.getCurrentPosition(function($55){$3b.ui.setLocationText('You are here: '+$55.coords.latitude+', '+$55.coords.longitude+'. Nearby providers shown on top.');$3b.location=[$55.coords.latitude,$55.coords.longitude];$3b.calculateDistance();},function($56){switch($56.code){case $56.TIMEOUT:$3b.ui.setLocationText('Timeout');break;case $56.POSITION_UNAVAILABLE:$3b.ui.setLocationText('Position unavailable');break;case $56.PERMISSION_DENIED:$3b.ui.setLocationText('Permission denied');break;case $56.UNKNOWN_ERROR:$3b.ui.setLocationText('Unknown error');break;}});}else {this.parent.Utils.log('Did not find navigator.geolocation');}},"increase":function(){this.maxhits+=100;this.prepareData();},"prepareData":function($57){var $57=($57?true:false);this.parent.Utils.log('DiscoJuice.Control prepareData()');var $58,$10,$59,$2e;var $5a=false;var $23=this.getTerm();var $5b=this.getCategories();if(!this.data)return ;this.data.sort(function($5,$4){var $5f,$60;$5f=($5.weight?$5.weight:0);$60=($4.weight?$4.weight:0);if($5.distanceweight)$5f+=$5.distanceweight;if($4.distanceweight)$60+=$4.distanceweight;return ($5f-$60);});if($23||$5b){this.ui.popup.find("p.discojuice_showall").show();}else {this.ui.popup.find("p.discojuice_showall").hide();}this.ui.clearItems();$58=0;for($10=0;$10<this.data.length;$10++){$59=this.data[i];if(!$59.weight)$59.weight=0;if($23){$2e=this.parent.Utils.searchMatch($59,$23);if($2e===false&&$59.weight>-50)continue;}else {$2e=null;}if($5b&&$5b.country){if(!$59.country)continue;if($59.country!=='_all_'&&$5b.country!==$59.country&&$59.weight>-50)continue;}if(++$58>this.maxhits){$5a=true;break;}var $2d=null;if($59.country){var $5c=(this.parent.Constants.Countries[current.country]?this.parent.Constants.Countries[current.country]:$59.country);if($5c!=='_all_'){var $5d=(this.parent.Constants.Flags[current.country]?this.parent.Constants.Flags[current.country]:undefined);$2d={'country':$5c,'flag':$5d};}}var $5e=$59.descr||null;this.ui.addItem($59,$2d,$2e,$59.distance);}this.ui.refreshData($5a,this.maxhits,$58);},"selectProvider":function($3f,$40){var $61;var $3b=this;var $62=$3b.discoWrite($3f,$40);if(this.parent.Utils.options.get('cookie',false)){var $37=$3f;if($40)$37+='#'+$40;this.parent.Utils.log('COOKIE write '+$37);this.parent.Utils.createCookie($37);}var $63=null;for(i=0;i<this.data.length;i++){if(this.data[i].entityID==$3f){if(!$40||$40==this.data[i].subID){$63=this.data[i];}}}$61=this.parent.Utils.options.get('callback');if($61){if($62){$.doTimeout(1000,function(){$61($63);});}else {$61($63);}return ;}},"discoReadSetup":function(){var $51=this.parent.Utils.options.get('disco');if(!$51)return ;var $47='';var $64=$51.url;var $65=$51.spentityid;var $52=$51.stores;var $10;var $66;if(!$52)return ;for($10=0;$10<$52.length;$10++){$66=$52[$10];this.parent.Utils.log('Setting up DisoJuice Read from Store ['+$66+']');iframeurl=$66+'?entityID='+escape($65)+'&isPassive=true&returnIDParam=entityID&return='+escape($64);$47='<iframe src="'+iframeurl+'" style="display: none"></iframe>';this.ui.addContent($47);}},"discoSubReadSetup":function(){var $51=this.parent.Utils.options.get('disco');if(!$51)return ;var $47='';var $64=$51.url;var $65=$51.spentityid;var $52=$51.subIDstores;var $10;var $66;if(!$52)return ;for(var $67 in $52){$64=$51.url+'entityID='+escape($67);$66=$52[$67];this.parent.Utils.log('Setting up SubID DisoJuice Read from Store ['+$67+'] =>  ['+$66+']');iframeurl=$66+'?entityID='+escape($65)+'&isPassive=true&returnIDParam=subID&return='+escape($64);this.parent.Utils.log('iFrame URL is  ['+iframeurl+']');this.parent.Utils.log('return URL is  ['+$64+']');$47='<iframe src="'+iframeurl+'" style="display: none"></iframe>';this.ui.addContent($47);}},"discoWrite":function($3f,$40){var $51=this.parent.Utils.options.get('disco');if(!$51)return false;if(!$51.writableStore)return false;var $47='';var $64=$51.url;var $65=$51.spentityid;var $68=$51.writableStore;if($40){if($51.subIDwritableStores&&$51.subIDwritableStores[entityID]){$68=$51.subIDwritableStores[entityID];this.parent.Utils.log('DiscoJuice.Control discoWrite('+$3f+') with SubID ['+$40+']');iframeurl=$68+escape($40);this.parent.Utils.log('DiscoJuice.Control discoWrite iframeURL ('+iframeurl+') ');$47='<iframe src="'+iframeurl+'" style="display: none"></iframe>';this.ui.addContent($47);return true;}else {return false;}}this.parent.Utils.log('DiscoJuice.Control discoWrite('+$3f+') to '+$68);iframeurl=$68+'?entityID='+escape($65)+'&IdPentityID='+escape($3f)+'&isPassive=true&returnIDParam=bogus&return='+escape($64);this.parent.Utils.log('DiscoJuice.Control discoWrite iframeURL ('+iframeurl+') ');$47='<iframe src="'+iframeurl+'" style="display: none"></iframe>';this.ui.addContent($47);return true;},"searchboxSetup":function(){var $3b=this;this.ui.popup.find("input.discojuice_search").autocomplete({minLength:0,source:function($69,$6a){var $23=$69.term;if($23.length===1)return ;$3b.prepareData();}});},"filterCountrySetup":function($6b){var $3b=this;var $17;var $6c=this.parent.Utils.options.get('setCountry');if(!$6b&&$6c){if(filterOptions[$6c])$6b=$6c;}var $6d='<p class="discojuice_filter_country">Show providers in '+'<select class="discojuice_filterCountrySelect" name="filterCountrySelect">';if($6b){$6d+='<option value="all">all countries</option>';}else {$6d+='<option value="all" selected="selected">all countries</option>';}for($17 in this.parent.Constants.Countries){if($17===$6b){$6d+='<option value="'+$17+'" selected="selected">'+this.parent.Constants.Countries[key]+'</option>';}else {$6d+='<option value="'+$17+'" >'+this.parent.Constants.Countries[key]+'</option>';}}$6d+='</select>';$6d+=' <a class="discojuice_showall textlink" href="">show all countries</a>';$6d+='</p>';this.ui.addFilter($6d).find("select").change(function($3e){$3e.preventDefault();$3b.resetTerm();$3b.ui.focusSearch();if($3b.ui.popup.find("select.discojuice_filterCountrySelect").val()!=='all'){$3b.ui.popup.find("a.discojuice_showall").show();}else {$3b.ui.popup.find("a.discojuice_showall").hide();}$3b.prepareData();});this.ui.popup.find("a.discojuice_showall").click(function($3e){$3e.preventDefault();$3b.resetCategories();$3b.resetTerm();$3b.prepareData(true);$3b.ui.focusSearch();$3b.ui.popup.find("a.discojuice_showall").hide();});},"setCountry":function($6e){if(this.parent.Constants.Countries[country]){this.ui.popup.find('select.discojuice_filterCountrySelect').val($6e);this.prepareData();}},"setPosition":function($6f,$70){this.location=[$6f,$70];this.calculateDistance();},"getCountry":function(){var $71=this.parent.Utils.options.get('countryAPI',false);var $3b=this;if($71){var $72=this.parent.Utils.readCookie('Country2');var $73=parseFloat(this.parent.Utils.readCookie('GeoLat'));var $74=parseFloat(this.parent.Utils.readCookie('GeoLon'));if($72){this.setCountry($72);this.parent.Utils.log('DiscoJuice getCountry() : Found country in cache: '+$72);if($73&&$74){this.setPosition($73,$74);}}else {$.getJSON($71,function($4c){if($4c.status=='ok'&&$4c.country){$3b.parent.Utils.createCookie($4c.country,'Country2');$3b.setCountry($4c.country);$3b.parent.Utils.log('DiscoJuice getCountry() : Country lookup succeeded: '+$4c.country);if($4c.geo&&$4c.geo.lat&&$4c.geo.lon){$3b.setPosition($4c.geo.lat,$4c.geo.lon);$3b.parent.Utils.createCookie($4c.geo.lat,'GeoLat');$3b.parent.Utils.createCookie($4c.geo.lon,'GeoLon');}}else {$3b.parent.Utils.log('DiscoJuice getCountry() : Country lookup failed: '+($4c.error||''));}});}}},"resetCategories":function(){this.ui.popup.find("select.discojuice_filterCountrySelect").val('all');},"getCategories":function(){var $75={};var $1b,$6e;$1b=this.ui.popup.find("select.discojuice_filterTypeSelect").val();if($1b&&$1b!=='all'){$75.type=$1b;}$6e=this.ui.popup.find("select.discojuice_filterCountrySelect").val();if($6e&&$6e!=='all'){$75.country=$6e;}return $75;},"getTerm":function(){return this.ui.popup.find("input.discojuice_search").val();},"resetTerm":function(){this.ui.popup.find("input.discojuice_search").val('');}};