function displayPopup2(xml){
if(xml!=null){
result=null;
if(window.ActiveXObject){
result=xml.getElementsByTagName("ipInChina")[0].text;
}else{
if(window.XMLHttpRequest){
result=xml.getElementsByTagName("ipInChina")[0].textContent;
}
}
if(result!=null&&result=="yes"){
insertCn();
}
}
}
function requestHandler2(){
if(client.readyState==4&&client.status==200){
if(client.responseText!=null){
displayPopup2(client.responseXML);
}else{
displayPopup2(null);
}
}else{
if(client.readyState==4&&client.status!=200){
displayPopup2(null);
}
}
}
var client=null;
function getURL2(url){
if(window.ActiveXObject){
client=new ActiveXObject("Microsoft.XMLHTTP");
}else{
if(window.XMLHttpRequest){
client=new XMLHttpRequest();
}
}
client.onreadystatechange=requestHandler2;
client.open("GET",url,true);
client.send(null);
}
function insertCn(){
var str="<div id=regp><div class=reg-title><img src=\"http://akamai.globalsources.com.edgesuite.net/f/593/3445/5d/static.globalsources.com.cn/SITE/I/REG200901.GIF\" alt=\"&#32463;&#27982;&#20302;&#36855;&#65292;&#24320;&#25299;&#24066;&#22330;&#38590;&#65292;&#35813;&#24590;&#20040;&#21150;&#65311;\" width=242 height=16></div><p><a href=\"https://cn.sellproducts.globalsources.com/RegisterSYP.jsp?Reg_path=eVHPSYP\" class=reg-links>&#27880;&#20876;&#20813;&#36153;&#20379;&#24212;&#21830;&#36134;&#25143;</a>&#65292;&#20139;&#26377;&#20813;&#36153;&#19978;&#20256;&#20135;&#21697;&#26381;&#21153;&#65292;&#21560;&#24341;&#24378;&#22823;&#30340;&#20248;&#36136;&#20080;&#23478;&#23458;&#25143;&#32676;&#65281;</p><p>&#36731;&#26494;&#19968;&#27493;&#23436;&#25104;&#27880;&#20876;</p><div class=reg-bottom><a href=\"https://cn.sellproducts.globalsources.com/RegisterSYP.jsp?Reg_path=eVHPSYP\"><img src=\"http://akamai.globalsources.com.edgesuite.net/f/593/3445/5d/static.globalsources.com.cn/SITE/I/R_ALERTS_1.GIF\"  alt=\"&#28857;&#20987;&#27880;&#20876;\" width=86 height=23></a></div><p class=reg-more><a href=\"http://www.b2b.globalsources.com.cn/ExportService-FreeListingService.HTM?source=eVHPSYP\" class=reg-links>&#20102;&#35299;&#35814;&#24773;</a></p></div>";
ABC.innerHTML=str;
}