//팝업창 설정
var newWin = "";
function MM_openWindowTarget( url, width, height) {

	var x;
	var y;

	if(newWin != ""){
		newWin.close();
	}

	if (self.innerHeight) { // except IE 
		x = (screen.availWidth - width) / 2; 
		y = (screen.availHeight - height) / 2; 
	}else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict 
		x = (screen.availWidth - width) / 2; 
		y = (screen.availHeight - height) / 2; 
	}else if (document.body) { // IE < 6 
		x = (screen.availWidth - width) / 2; 
		y = (screen.availHeight - height) / 2; 
	}

	newWin  = window.open(
		url, 
		"popUpWindow", 
		"directories=no,status=no,menubar=no,toolbar=no,scrollbars=no,resizable=no"+ 
		",left=" + x + ",top=" + y + ",width=" + width + ",height=" + height
	);
}
//테트리스 open
function openTetris() {
	MM_openWindowTarget( '/pages/board/popup/popupTetris.jsp', 360, 350, 'no', "no");
}

//차트 open
function openChart() {
	MM_openWindowTarget( '/pages/board/popup/popupChart.jsp', 425, 450, 'no', "no");
}

//관심 기업 open
function openConcernCo() {
	MM_openWindowTarget( '/pages/board/popup/popupConcernCo.jsp', 360, 280, 'no', "no");
}

//포트폴리오 open
function openPortfolio() {
	MM_openWindowTarget( '/pages/board/popup/popupPortfolio.jsp', 360, 280, 'no', "no");
}

