
function showDialog(url, o, width, height) {
	return window.showModalDialog(url, o, "dialogWidth=" + width + ";dialogHeight=" + height + ";center:yes;resizable:no;help:no;scroll:yes;status:no");
}
function openWindow(url, name, iWidth, iHeight) {
	window.open(url, name, "width=" + iWidth + ",height=" + iHeight + ",left=" + (screen.availWidth - iWidth) / 2 + ",top=" + (screen.availHeight - iHeight) / 2 + ",toolbar=no,resizable=no,menubar=no,scrollbars=yes,location=no,status=no");
}

function getVisitCount(articleID,path){
	var rUrl=path+"/action/article/visitCount.action?articleId="+articleID;
	var oAjax=new Ajax();
	var oValue=oAjax.Result("get",rUrl,"");
	document.getElementById("visitCount").firstChild.nodeValue=oValue;
	oAjax=null;
}



