﻿var xmlHttp
<!----------BODY_SONG_INFO------------------------------------------------------------------->
function showCustomer(file)
{ 
var url=""+file+"";
xmlHttp=GetXmlHttpObject(stateChanged)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
} 

function stateChanged() 
{ 
if (xmlHttp.readyState==1 || xmlHttp.readyState==2)
{ 
show_Loading();
} 

  else  if (xmlHttp.readyState==4 || xmlHttp.readyState=="200")
{ 
document.getElementById("BODY_SONG_INFO").innerHTML=xmlHttp.responseText 
window.status="[-] http://thuychi.tk [-] Y!ID : neuemhieu293 [-] Mobile : 0906.254.872 [-]";
hide_Loading();
}  
}
<!----------BODY_SONG_INFO------------------------------------------------------------------->


<!----------BODY_SONG_INFO------------------------------------------------------------------->
function showpp(file)
{ 
var url=""+file+"";
xmlHttp=GetXmlHttpObject(stateChangedpp)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
} 

function stateChangedpp() 
{ 
if (xmlHttp.readyState==1 || xmlHttp.readyState==2)
{ 
show_Loading();
} 

  else  if (xmlHttp.readyState==4 || xmlHttp.readyState=="200")
{ 
document.getElementById("BODY_PP_VIEW").innerHTML=xmlHttp.responseText 
window.status="[-] http://thuychi.tk [-] Y!ID : neuemhieu293 [-] Mobile : 0906.254.872 [-]";
hide_Loading();
}  
}
<!----------BODY_SONG_INFO------------------------------------------------------------------->


<!----------VD2J-SEARCH------------------------------------------------------------------->
function showppd(file)
{ 
var url=""+file+"";
xmlHttp=GetXmlHttpObject(stateChangedppd)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
} 

function stateChangedppd() 
{ 
if (xmlHttp.readyState==1 || xmlHttp.readyState==2)
{ 
show_Loading();
} 

    else  if (xmlHttp.readyState==4 || xmlHttp.readyState=="200")
{ 
document.getElementById("BODY_PP").innerHTML=xmlHttp.responseText 
window.status="[-] http://thuychi.tk [-] Y!ID : neuemhieu293 [-] Mobile : 0906.254.872 [-]";
hide_Loading();
}  
}

<!----------VD2J-SEARCH------------------------------------------------------------------->

<!----------VD2J-SEARCH------------------------------------------------------------------->
function showppd_ok(file)
{ 
var url=""+file+"";
xmlHttp=GetXmlHttpObject(stateChangedppd1)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
} 

function stateChangedppd1() 
{ 
if (xmlHttp.readyState==1 || xmlHttp.readyState==2)
{ 
show_Loading();
} 

    else  if (xmlHttp.readyState==4 || xmlHttp.readyState=="200")
{ 
document.getElementById("BODY_PP_VIEW").innerHTML=xmlHttp.responseText 
window.status="[-] http://thuychi.tk [-] Y!ID : neuemhieu293 [-] Mobile : 0906.254.872 [-]";
hide_Loading();
}  
}

<!----------VD2J-SEARCH------------------------------------------------------------------->


<!----------xem hinh anh------------------------------------------------------------------->
function showpic(file)
{ 
var url=""+file+"";
xmlHttp=GetXmlHttpObject(stateChangedpic)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
} 

function stateChangedpic() 
{ 
if (xmlHttp.readyState==1 || xmlHttp.readyState==2)
{ 
show_Loading();

} 

  else  if (xmlHttp.readyState==4 || xmlHttp.readyState=="200")
{ 
document.getElementById("BODY_PIC_VIEW").innerHTML=xmlHttp.responseText 
window.status="[-] http://thuychi.tk [-] Y!ID : neuemhieu293 [-] Mobile : 0906.254.872 [-]";
hide_Loading();
}  
}
<!----------xem hinh anh------------------------------------------------------------------->

<!----------tra loi------------------------------------------------------------------->
function showrep(file)
{ 
var url=""+file+"";
xmlHttp=GetXmlHttpObject(stateChangedrep)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
} 

function stateChangedrep() 
{ 
if (xmlHttp.readyState==1 || xmlHttp.readyState==2)
{ 
show_Loading();

} 

  else  if (xmlHttp.readyState==4 || xmlHttp.readyState=="200")
{ 
document.getElementById("reply").innerHTML=xmlHttp.responseText 
window.status="[-] http://thuychi.tk [-] Y!ID : neuemhieu293 [-] Mobile : 0906.254.872 [-]";
hide_Loading();
}  
}
<!----------traloi------------------------------------------------------------------->


<!----------Danh sach bai hat------------------------------------------------------------------->
function showBH(file)
{ 
var url=""+file+"";
xmlHttp=GetXmlHttpObject(stateChangedshowBH)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
} 

function stateChangedshowBH() 
{ 
if (xmlHttp.readyState==1 || xmlHttp.readyState==2)
{ 
show_Loading();

} 

  else  if (xmlHttp.readyState==4 || xmlHttp.readyState=="200")
{ 
document.getElementById("BODY_LISTSONG").innerHTML=xmlHttp.responseText 
window.status="[-] http://thuychi.tk [-] Y!ID : neuemhieu293 [-] Mobile : 0906.254.872 [-]";
hide_Loading();
}  
}
<!----------Danh sach bai hat------------------------------------------------------------------->

<!----------Nghe bai hat------------------------------------------------------------------->
function Nghe(file)
{ 
var url=""+file+"";
xmlHttp=GetXmlHttpObject(stateChangedNghe)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
} 

function stateChangedNghe() 
{ 
if (xmlHttp.readyState==1 || xmlHttp.readyState==2)
{ 
show_Loading();

} 

  else  if (xmlHttp.readyState==4 || xmlHttp.readyState=="200")
{ 
document.getElementById("BODY_MEDIAPLAY").innerHTML=xmlHttp.responseText 
window.status="[-] http://thuychi.tk [-] Y!ID : neuemhieu293 [-] Mobile : 0906.254.872 [-]";
hide_Loading();
}  
}
<!---------Nghe bai hat------------------------------------------------------------------->




function GetXmlHttpObject(handler)
{ 
var objXmlHttp=null

if (navigator.userAgent.indexOf("Opera")>=0)
{
alert("This example doesn't work in Opera") 
return 
}
if (navigator.userAgent.indexOf("MSIE")>=0)
{ 
var strName="Msxml2.XMLHTTP"
if (navigator.appVersion.indexOf("MSIE 5.5")>=0)
{
strName="Microsoft.XMLHTTP"
} 
try
{ 
objXmlHttp=new ActiveXObject(strName)
objXmlHttp.onreadystatechange=handler 
return objXmlHttp
} 
catch(e)
{ 
alert("Error. Scripting for ActiveX might be disabled") 
return 
} 
} 
if (navigator.userAgent.indexOf("Mozilla")>=0)
{
objXmlHttp=new XMLHttpRequest()
objXmlHttp.onload=handler
objXmlHttp.onerror=handler 
return objXmlHttp
}
}

