function WCCPrint()
{ 
bdhtml=window.document.body.innerHTML; 
sprnstr="<!--startprint-->"; 
eprnstr="<!--endprint-->"; 
prnhtml=bdhtml.substr(bdhtml.indexOf(sprnstr)+17);

prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));
if(location.hostname.indexOf("hk-")!=-1){
window.document.body.innerHTML="<img src='../../modules/traffic/images/print_logo_hk.gif' width='89' height='16'/ align='right'><br>"+prnhtml; 
}else if(location.hostname.indexOf("gz-")!=-1){
window.document.body.innerHTML="<img src='../../modules/traffic/images/print_logo_gz.gif' width='89' height='16'/ align='right'><br>"+prnhtml; 
}else{
window.document.body.innerHTML="<img src='../../modules/traffic/images/print_logo.gif' width='89' height='16'/ align='right'><br>"+prnhtml; 
}
window.print(); 
}
function WCCPrint_F()
{ 
bdhtml=window.document.body.innerHTML; 
sprnstr="<!--startprint-->"; 
eprnstr="<!--endprint-->"; 
prnhtml=bdhtml.substr(bdhtml.indexOf(sprnstr)+17);

prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));
if(location.hostname.indexOf("hk-")!=-1){
window.document.body.innerHTML="<img src='../images/print_logo_hk.gif' width='89' height='16'/ align='right'><br>"+prnhtml; 
}else if(location.hostname.indexOf("gz-")!=-1){
window.document.body.innerHTML="<img src='../images/print_logo_gz.gif' width='89' height='16'/ align='right'><br>"+prnhtml; 
}else{
window.document.body.innerHTML="<img src='../images/print_logo.gif' width='89' height='16'/ align='right'><br>"+prnhtml; 
}
window.print(); 
}
	function showsitename(){
		var str=document.title;
		if(location.hostname.indexOf("hk-")!=-1){
			var showstr = str.replace("シンセンスクエアトップ","香港スクエアトップ");
			document.title=showstr;
			document.getElementById("showsitename").innerHTML="香港スクエアトップ";
			document.getElementById("showsitelogo").src="/modules/traffic/images/mlogo_hk.gif";
		}else if(location.hostname.indexOf("gz-")!=-1){
			var showstr = str.replace("シンセンスクエアトップ","広州スクエアトップ");
			document.title=showstr;
			document.getElementById("showsitename").innerHTML="広州スクエアトップ";
			document.getElementById("showsitelogo").src="/modules/traffic/images/mlogo_gz.gif";
		}	
	}
	
