// JavaScript Document
function popupAction(p_counterNumKey, p_iLevel, p_strFromUrl)
{
//	if (GetCookie("Online")!="True")
	{
		var strUrl = "http://counter.18day.com/inter.aspx?counterNumKey="+p_counterNumKey+"&iLevel="+p_iLevel+"&fromurl="+p_strFromUrl;
		jsobj = document.getElementById("popup");
		jsobj.src = strUrl;
//		SetCookie("Online", "True");
	}
}

function clickAction(p_counterNumKey, p_iLevel, p_strFromUrl)
{
		var strUrl = "http://counter.18day.com/clicked.aspx?counterNumKey="+p_counterNumKey+"&iLevel="+p_iLevel+"&fromurl="+p_strFromUrl;
		return ;
		jsobj = document.getElementById("clicked");
		jsobj.src = strUrl;
}