function LoadLoginPanel(){var randomnumber=(Math.random()*1111);LoadLoginPanelRequest('/personalisation/customs/gullivers-login.aspx?i='+randomnumber)}function LoadLoginPanelRequest(url){var httpRequest;if(window.XMLHttpRequest){httpRequest=new XMLHttpRequest();if(httpRequest.overrideMimeType){httpRequest.overrideMimeType('text/xml')}}else if(window.ActiveXObject){try{httpRequest=new ActiveXObject("Msxml2.XMLHTTP")}catch(e){try{httpRequest=new ActiveXObject("Microsoft.XMLHTTP")}catch(e){}}}if(!httpRequest){alert('Giving up :( Cannot create an XMLHTTP instance');return false}httpRequest.onreadystatechange=function(){LoadLoginPanelResponse(httpRequest)};httpRequest.open('GET',url,true);httpRequest.send(null)}function LoadLoginPanelResponse(httpRequest){if(httpRequest.readyState==4){if(httpRequest.status==200){document.getElementById('logon').innerHTML=httpRequest.responseText}else{}}}