	toggleContent=function(ele, SEQ)
	{
		ele.parentNode.lastChild.style.display = ele.parentNode.lastChild.style.display == "none" ? "block" : "none";
		if(ele.parentNode.lastChild.style.display == "block") setHit(SEQ);
		if(typeof(fn_iframe_resize_withframename) == "function") fn_iframe_resize_withframename();
	}
	setRec=function(SEQ, FLAG)
	{
		var url = "/zentool/proc/review_rec.asp?cdate="+fn_cdate()+"&SEQ="+SEQ+"&FLAG="+FLAG;
		new Ajax(url, {
				method: 'get'
			,	evalScripts: true
			,	async : true
			,	onFailure : function(){window.open(url);}
		}).request();
	}
	setHit=function(SEQ)
	{
		var url = "/zentool/proc/review_hit.asp?date="+fn_cdate()+"&SEQ="+SEQ;
		new Ajax(url, {
				method: 'get'
			,	evalScripts: true
			,	async : true
			,	onFailure : function(){window.open(url);}
		}).request();
	}

