You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
3.3 KiB
JavaScript

document.writeln("<div id=\"tollFree2\" align=\"left\">");
document.writeln("<div class='USA' style='display: none;'><span class=\"phone\">800-2682918</span> <a href=\"javascript:;\" onclick=\"$(\'#tollFree\').slideDown(380);\" rel=\"nofollow\">(USA &amp; CA) <img src=\"/pic/arrowDown2.gif\" border=\"0\" width=\"11\" height=\"11\"></a></div>");
document.writeln("<div class='AU' style='display: none;'><span class=\"phone\">1800-764678</span> <a href=\"javascript:;\" onclick=\"$(\'#tollFree\').slideDown(380);\" rel=\"nofollow\">(Australia) <img src=\"/pic/arrowDown2.gif\" border=\"0\" width=\"11\" height=\"11\"></a></div>");
document.writeln("<div class='UK' style='display: none;'><span class=\"phone\">0800-0327753</span> <a href=\"javascript:;\" onclick=\"$(\'#tollFree\').slideDown(380);\" rel=\"nofollow\">(UK) <img src=\"/pic/arrowDown2.gif\" border=\"0\" width=\"11\" height=\"11\"></a></div>");
document.writeln("<div class='CN' style='display: none;'><span class=\"phone\">800-8793-007</span> <a href=\"javascript:;\" onclick=\"$(\'#tollFree\').slideDown(380);\" rel=\"nofollow\">(China) <img src=\"/pic/arrowDown2.gif\" border=\"0\" width=\"11\" height=\"11\"></a></div>");
document.writeln("<div class='UN' style='display: none;'><span class=\"phone\">86-773-2831999</span> <a href=\"javascript:;\" onclick=\"$(\'#tollFree\').slideDown(380);\" rel=\"nofollow\">(Int\'l) <img src=\"/pic/arrowDown2.gif\" border=\"0\" width=\"11\" height=\"11\"></a></div>");
document.writeln("</div>");
document.writeln("<div id=\"tollFree\" align=\"left\" style=\"display: none\">");
document.writeln("<div class=\"moreContact\">");
document.writeln("<ul style=\"display:inherit\">");
document.writeln("<li class=\"telephone USA\">800-2682918 (USA &amp; CA)</li>");
document.writeln("<li class=\"telephone AU\">1800-764678 (Australia)</li>");
document.writeln("<li class=\"telephone UK\">0800-0327753 (UK)</li>");
document.writeln("<li class=\"telephone CN\">800-8793-007 (China)</li>");
document.writeln("<li class=\"telephone UN\">86-773-2831999 (Int\'l)</li>");
document.writeln("<li class=\"skype\"> chinahighlights</li>");
document.writeln("<li class=\"email\"><a href=\"mailto:service@chinahighlights.com\" rel=\"nofollow\">service@chinahighlighs.com</a></li>");
document.writeln("</ul>");
document.writeln("<div class=\"beijingTime\">Beijing Time Now:");
document.writeln("<div class=\"timeZone\"><span id=\"beijingtime\"></span> GMT+8</div>");
document.writeln("</div>");
document.writeln("<div class=\"closeButton\"><img src=\"/pic/close.png\" onclick=\"$(\'#tollFree\').slideUp(380);\" border=\"0\" width=\"13\" height=\"13\"></div>");
document.writeln("</div>");
document.writeln("</div>");
$(function(){
$.get("/uc-client/AspHttp_Accept_Language.asp", function(data){
$("#tollFree2 div").hide();
if(data=="en-ca" || data=="en-us"){
$("#tollFree2 .USA").show();
hidetollFree(".USA");
}else if(data=="en-au"){
$("#tollFree2 .AU").show();
hidetollFree(".AU");
}else if(data=="en-gb"){
$("#tollFree2 .UK").show();
hidetollFree(".UK");
}else if(data=="zh-cn"){
$("#tollFree2 .CN").show();
hidetollFree(".CN");
}else{
$("#tollFree2 .UN").show();
hidetollFree(".UN");
}
});
});
function hidetollFree(str){
$("#tollFree ul li").show();
$("#tollFree ul li"+str).hide();
}