function cityshow(name,value) {
		if(value == 1) {
			document.getElementById(name).style.display = '';
		} else {
			document.getElementById(name).style.display = 'none';
		}
	}
function getObj(id) { return document.getElementById(id); }
function topnew (id){
   if(id=="new"){
       document.getElementById(id).className="on";
       document.getElementById("old").className="";
       document.getElementById("top10"+id).style.display="";
       document.getElementById("top10old").style.display="none";
   }
   else{
       document.getElementById(id).className="on";
       document.getElementById("new").className="";
       document.getElementById("top10"+id).style.display="";
       document.getElementById("top10new").style.display="none";
   }
}
function iframeUrl (city){
    document.getElementById("newCarIFrame").src="http://"+city+".goodcar.cn/detail/defaultnew/newcarnative.shtml";
}

function loadHtml(fObjId,url){
    $.getJSON("http://api.goodcar.cn/twjh.php?action=getHtml&url="+url+"&jsoncallback=?", function(data){
        if(data.html!=""){
			var MyLi = document.createElement("li");
		    document.getElementById(fObjId).appendChild(MyLi);
		    MyLi.innerHTML = data.html;
        }});
}
function copyToClipBoard(){ 
    var clipBoardContent=getObj("pagecontent").innerHTML;
    window.clipboardData.setData("Text",clipBoardContent); 
    alert("复制成功"); 
}
function getUrlCity(url){
	var rs="";
    url = url+"";
	if(url!=""){
		rs = url.split('.');
		rs = rs[0].split('//');
		rs = rs[1];
		if(rs=="cq" || rs=="cd" || rs=="bj" || rs=="wh" || rs=="xm" || rs=="tj" || rs=="www"){
			return rs;
		}
		return "www";
	}
}



