/* flash re write */
function IE_HtmlRewrite(parentObj) {
	var objParent = document.getElementById(parentObj);
	if (window.ActiveXObject && objParent) {
		objParent.innerHTML = objParent.innerHTML;
	}
}

/* flash board */

function noticeOpen(posX,posY) {
	var objBoard = document.getElementById("news-notice");
	objBoard.style.display = "block";
	objBoard.style.left = posX;
	objBoard.style.top = posY;
}
function noticeClose() {
	var objBoard = document.getElementById("news-notice");
	objBoard.style.display = "none";
}
function flashClose() {
	window.close();
}
