try {
	document.execCommand("BackgroundImageCache",false,true);
} catch(ignored) {}

//link
function GoPage(url,target)
{
	if(target) target.location.href=url;
	else window.location.href=url;
}

//commentDelete
function checkDeleteComment(param) {
	if(confirm("선택하신 글을 삭제하시겠습니까?")) {
		GoPage(param);
	} else {
		return;
	}
}