

<SCRIPT LANGUAGE="JavaScript">
<!--
	gotoPage();

	// define ...
	function gotoPage() {
		var url = window.parent.location.href;
		if (url == null || url.length < 30) {
			return;
		}
		var temp = url.replace("http://","");
		var s = temp.split("/");
		if (s == null) {
			return;
		}
		var len = s.length;
		if ((len == 8) && (s[2]=="col") && (s[3].length>0) && (s[7].indexOf(".html") > -1)) {
			url = "http://"+s[0]+"/"+s[1]+"/article.jsp?id="+s[7].split(".")[0];
		} else if ((len == 7) && (s[1]=="col") && (s[2].length>0) && (s[6].indexOf(".html") > -1)) {
			url = "http://"+s[0]+"/article.jsp?id="+s[6].split(".")[0];
		} else if ((len == 4) && (s[1]=="col") && (s[2].length>0) && (s[3] == "index.html")) {
			url = "http://"+s[0]+"/column.jsp?id="+s[2];
		} else {
			url = "/";
		}
		location.href = url;
	}

//-->
</SCRIPT>