var CurrentFontSize = 15
var CurrentLineHeight = 18

//±ÛÀÚÅ©±â Á¶Á¤
function SetFontSize(SizeFlag) {
	obj = document.getElementById("CellContent")
	
	if (SizeFlag == 'B') {
		CurrentFontSize = CurrentFontSize + 1
		CurrentLineHeight = parseInt(CurrentFontSize*1.6)
		obj.style.fontSize = CurrentFontSize + "px"
		obj.style.lineHeight = CurrentLineHeight + "px"
	} else {
		if (CurrentFontSize>0) {
			CurrentFontSize = CurrentFontSize - 1
			CurrentLineHeight = parseInt(CurrentFontSize*1.6)
		}
		obj.style.fontSize = CurrentFontSize + "px"
		obj.style.lineHeight = CurrentLineHeight + "px"
	}
}

function SendMail (Param1) {
	window.open ("/SendMail/enteremailaddr.asp?ArticleID=" + Param1 , "win", "width=670,height=565,scrollbars=yes,status=no")
}
function ArticlePrint (Param1) {
	window.open ("/Service/MyNews/ArticlePrint.asp?ArticleID=" + Param1 , "win", "width=670,height=665,scrollbars=yes")
}

