// Set vars
var news = "/bbs/00000004/00000001/";
var international = "/bbs/00000005/00000001/";
var entertainment = "/bbs/00000006/00000001/";

// Check url
if (window.location.href.match("entertainment") != null) { 
	document.write("<a href=\"" + entertainment + "\" title=\"Click here to comment on this article in the forums\">Comment</a>&nbsp;");
	document.write("<a href=\"" + entertainment + "\" title=\"Click here to comment on this article in the forums\"><img src=\"/image/article/bubble.gif\" alt=\"forum\" width=\"18\" height=\"18\" /></a>");
} else if (window.location.href.match("international") != null)  { 
	document.write("<a href=\"" + international + "\" title=\"Click here to comment on this article in the forums\">Comment</a>&nbsp;");
	document.write("<a href=\"" + international + "\" title=\"Click here to comment on this article in the forums\"><img src=\"/image/article/bubble.gif\" alt=\"forum\" width=\"18\" height=\"18\" /></a>");
} else { 
	document.write("<a href=\"" + news + "\" title=\"Click here to comment on this article in the forums\">Comment</a>&nbsp;");
	document.write("<a href=\"" + news + "\" title=\"Click here to comment on this article in the forums\"><img src=\"/image/article/bubble.gif\" alt=\"forum\" width=\"18\" height=\"18\" /></a>");
}