<!--
/**
* Æ÷¿öµù Ã³¸®
*
* º» ÆÄÀÏÀº Àý´ë ¼öÁ¤ÇÏÁö ¸¶½Ã¿ä!
*
* @(#)		mc_forwarding.js
* @module	-
* @author	SeCo, <seco@shinbiro.com>
* @created	2003.06.11 by SeCo
*				- ÃÖÃÊ ÀÛ¼º
*/
url = "" + document.location;
is_at = url.indexOf('@');
refferer = document.referrer;
if(is_at > -1) {
	sid = url.substring(7, is_at);
	hompy = "/sangsa/kr/index.php?ssid=" + sid+"&refferer="+refferer;
	location.replace(hompy);
} else {
	//hompy = "/main/kr/index.php?refferer="+refferer;
	hompy = "/main/kr/index.php";
	location.replace(hompy);
}
//-->