	document.write('<div><form name=frmMulti method=post action="http://ocean.kisti.re.kr/IS_mvpopo001P.do?method=multMain">');
	document.write('<input type=hidden name="poid">');
	document.write('</form></div>');

	//멀티미디어자료관 팝업창 띄우기
	function winMulti(poid){

		var frm1 = document.frmMulti;
		frm1.poid.value = poid;

		var width  = 950;
		var height = 600;

	    var left = 50; //(screen.Width - width) / 2;
		var top = 40;  //(screen.Height - height) / 2;

		wMulti = window.open("", "MultiMedia", "left=" + left + ",top=" + top + ",width=" + width + ",height=" + height + ",status=1,scrollbars=yes,resizable=yes");

		frm1.target = "MultiMedia";
		frm1.submit();
		wMulti.focus();
	}