 var cookieString = new String(document.cookie);
    var cookieHeader = "song=";
    var beginPosition = cookieString.indexOf(cookieHeader);
        cookieString = cookieString.substring(beginPosition + cookieHeader.length);
		end = cookieString.indexOf(";");
		if (end>0)
		{url = cookieString.substring(0,end);}
		else
		{url=cookieString}
		
String.prototype.GetCount = function(str,mode){return eval("this.match(/("+str+")/g"+(mode?"i":"")+").length");}
function urldecode(str){
     var i,temp;
     var result="";
     for(i=0;i<str.length;i++){
           if(str.charAt(i)=="%"){
                 if(str.charAt(++i)=="u"){
                       temp=str.charAt(i++) + str.charAt(i++) + str.charAt(i++) + str.charAt(i++) + str.charAt(i);
                       result += unescape("%" + temp);
                 }else{
                       temp = str.charAt(i++) + str.charAt(i);
                       if(eval("0x"+temp)<=160){
                             result += unescape("%" + temp);
                       }else{
                             temp += str.charAt(++i) + str.charAt(++i) + str.charAt(++i);
                             result += Decode_unit("%" + temp);
                       }
                 }
           }else{
                 result += str.charAt(i);
           }
     }
     return result;
}
function Decode_unit(str){
     var p,q = "";
     if(str.GetCount("%")!=2)return str;
     p=eval("0x" + str.split("%")[1]);
     q=eval("0x" + str.split("%")[2]);
     if(p<160 || q<160)return unescape(str);
     str=str.replace(/%/g,"");
     execScript("temp=&H"+str, "vbscript");
     execScript("result=chr("+temp+")", "vbscript");
     return result;
}
execScript("url=replace(url,'%86%B4','†´')", "vbscript");
url=urldecode(url);
//document.write("<object id=\"NSPlay\" width=360 height=64 classid=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715\" standby=\"Loading Microsoft Windows Media Player components...\" type=\"application/x-oleobject\" hspace=\"5\">");
document.write("<object id=\"NSPlay\" width=100% height=64 classid=\"CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112\"  standby=\"Loading Microsoft Windows Media Player components...\" type=\"application/x-oleobject\">");
document.write("<param name=\"AutoRewind\" value=1>");
//document.write("<param name=\"FileName\" value="+url+">");
document.write("<param name=\"url\" value="+url+">");
document.write("<param name=\"ShowControls\" value=\"1\">");
document.write("<param name=\"loop\" value=\"999\">");
document.write("<param name=\"ShowPositionControls\" value=\"0\">");
document.write("<param name=\"ShowAudioControls\" value=\"1\">");
document.write("<param name=\"ShowTracker\" value=\"1\">");
document.write("<param name=\"stretchToFit\" value=\"1\">");
document.write("<param name=\"ShowDisplay\" value=\"0\">");
document.write("<param name=\"ShowStatusBar\" value=\"1\">")
document.write("<param name=\"ShowGotoBar\" value=\"0\">")
document.write("<param name=\"ShowCaptioning\" value=\"0\">");
document.write("<param name=\"AutoStart\" value=1>")
document.write("<param name=\"Volume\" value=\"50\">")
document.write("<param name=\"AnimationAtStart\" value=\"0\">");
document.write("<param name=\"TransparentAtStart\" value=\"0\">")
document.write("<param name=\"AllowChangeDisplaySize\" value=\"0\">")
document.write("<param name=\"AllowScan\" value=\"0\">");
document.write("<param name=\"EnableContextMenu\" value=\"0\">")
document.write("<param name=\"ClickToPlay\" value=\"0\">")
document.write("<param name=\"PlayCount\" value=\"0\">");
document.write("</object>");
