function login(){var b={username:$("#username").val(),password:$("#password").val()};$("#password").val("");$.ajax({url:"login.php",type:"POST",data:b,dataType:"text",cache:false,success:function(a){if(a=getXML(a))if(a.tagName.toLowerCase()=="status")if(a.getAttribute("value")=="success")location.href="player.php"+(location.hash.length>0?location.hash:"");else{errs=a.getElementsByTagName("error");ihtml="";for(a=0;a<errs.length;a++)ihtml+="<li>"+(errs[a].text||errs[a].textContent)+"</li>";$("#results").html("<ul>"+
ihtml+"</ul>").css({display:""});$("#password")[0].focus()}else $("#results").html(a.text||a.textContent).css({display:""});else $("#results").html("Your browser may not support the scripts on this website.<br>NOTE: Recent builds of Google Chrome seems to have a bug in the XML parser.").css({display:""})}});return false}$(function(){window.attachEvent&&!window.opera&&$("#results").css({display:""}).html("Hey! Stop using Internet Explorer! Some aspects of this website have been disabled or may not work properly in Internet Explorer.<br>We suggest using <a style='color:white' href='http://www.mozilla.com/'>Mozilla Firefox</a> or <a style='color:white' href='http://www.google.com/chrome'>Google Chrome</a>!")});

