
var thisPath = document.URL;
 if (thisPath.indexOf("bjweekend") != -1){
 	document.write("BEIJING WEEKEND");
 }else if(thisPath.indexOf("bw") != -1){
 	document.write("BUSINESS WEEKLY");
 }else if(thisPath.indexOf("cndy") != -1){
 	document.write("CHINA DAILY");
 }else if(thisPath.indexOf("hkedition") != -1){
 	document.write("HK EDITION");
 }else if (thisPath.indexOf("supplement") != -1){
	document.write("SUPPLEMENT");
 }else if (thisPath.indexOf("olympian") != -1){
	document.write("OLYMPIAN");
 }
