<!--
	function Speam_No(f) { //v2.0
		var openFile = "include/" + f;
		var Selcol = showModalDialog("" + openFile + "","Speam_No","font-size:12; dialogWidth:600px; dialogHeight:380px; center:yes; status:no; help:no; scroll:no"); 
	}

	function openWindow(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable) {
		toolbar_str = toolbar ? 'yes' : 'no';
		menubar_str = menubar ? 'yes' : 'no';
		statusbar_str = statusbar ? 'yes' : 'no';
		scrollbar_str = scrollbar ? 'yes' : 'no';
		resizable_str = resizable ? 'yes' : 'no';
		window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
	}
	function openWindowModal(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable) {
		toolbar_str = toolbar ? 'yes' : 'no';
		menubar_str = menubar ? 'yes' : 'no';
		statusbar_str = statusbar ? 'yes' : 'no';
		scrollbar_str = scrollbar ? 'yes' : 'no';
		resizable_str = resizable ? 'yes' : 'no';
		showModalDialog(url, name, "font-size:12; dialogWidth:" + width + "px; dialogHeight:" + height + "px; dialogLeft:" + left + "px; dialogTop:" + top + "px; status:" + statusbar_str + "; help:no; scroll:" + scrollbar_str + "");

	}


	function getCenterX(width) {

		var left = (screen.width/2) - (width/2);

		return left;
	}


	function getCenterY(height) {

		var top = (screen.height/2) - (height/2);

		return top;
	}

function HelpMail()
{
	var url = "include/HelpMail.php3";	
	window.open(url, "HelpMail","width=650,height=470,toolbar=no,status=no");
	return false;
}


// ´Þ·ÂÅø ¿ÀÇÂ
function open_MsCalendar(target) {
	var window_style = "dialogWidth:230px;dialogHeight:280px;center:1;scroll:0;help:0;status:0";
	var window_value = showModalDialog("MSCalendar/MsCalendar.htm", "DSCalendar", window_style);
	
	target.value = window_value;
	return false;	
}
//-->
