function fnMessage(){
	alert (" ¾Ë·Áµå¸³´Ï´Ù. \n\n " +
			"È¸°è ½Ã½ºÅÛ ¿¬µ¿À» ÁØºñÁßÀÔ´Ï´Ù. \n " +
     		"ºÒÆíÀ» µå·Á ÁË¼ÛÇÕ´Ï´Ù. \n\n " +
     		"¿ä±Ý°ú °ü·ÃÇÑ ¹®ÀÇ»çÇ×Àº ±âº» °è¾àÁ¤º¸ÀÇ \n " +
     		"°è¾à ´ã´çÀÚ¿¡°Ô ¹®ÀÇ ÁÖ½Ã±â ¹Ù¶ø´Ï´Ù. \n\n " +
     		"°¨»çÇÕ´Ï´Ù.  ");
}		

function fnEmailAlert(){
	alert("ÁË¼ÛÇÕ´Ï´Ù.ÇöÀç ÀáÁ¤ÀûÀ¸·Î ÀÌ¸ÞÀÏ Ã¼Å© ¼­ºñ½º¸¦ ÀÌ¿ëÇÏ½Ç ¼ö ¾ø½À´Ï´Ù.");
}

function OpenWin(theURL){
  window.open(theURL,"","toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=800,height=600");
}

//ÇÃ·¡½Ã
function flashOpen(flashSrc, flashWidth, flashHeight, flashVar){

	var stringVars = flashVar;

	document.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" WIDTH="' + flashWidth + '" HEIGHT="' + flashHeight + '" id="flashObject" swLiveConnect="true">  ');

	document.write('<PARAM NAME=flashVars VALUE="'+ stringVars + '" />');
	document.write('<PARAM NAME=movie VALUE="' + flashSrc + '" />');
	document.write('<PARAM NAME=quality VALUE=high />');
	document.write('<PARAM NAME=menu VALUE=false />');
	document.write('<PARAM NAME=allowScriptAccess VALUE=always />');
	document.write('<PARAM NAME=bgcolor VALUE=#FFFFFF />');

	document.write('<EMBED src="' + flashSrc + '" flashVars="' + stringVars + '" allowScriptAccess="always" quality="high" bgcolor="#FFFFFF"  WIDTH="' + flashWidth + '" HEIGHT="' + flashHeight + '" NAME="flashObject" TYPE = "application/x-shockwave-flash" PLUGINSPAGE = "http://www.macromedia.com/go/getflashplayer"></EMBED>');

	document.write('</OBJECT>');
}

//ÇÃ·¡½Ã (Åõ¸í)
function flashOpenTransparent(flashSrc, flashWidth, flashHeight, flashVar){

	var stringVars = flashVar;

	document.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" WIDTH="' + flashWidth + '" HEIGHT="' + flashHeight + '" id="flashObject" swLiveConnect="true"> ');

	document.write('<PARAM NAME=flashVars VALUE="'+ stringVars + '" />');
	document.write('<PARAM NAME=movie VALUE="' + flashSrc + '" />');
	document.write('<PARAM NAME=quality VALUE=high />');
	document.write('<PARAM NAME=menu VALUE=false />');
	document.write('<PARAM NAME=allowScriptAccess VALUE=always />');
	document.write('<PARAM NAME=bgcolor VALUE=#FFFFFF />');
	document.write('<PARAM NAME=wmode VALUE=transparent />');

	document.write('<EMBED src="' + flashSrc + '" flashVars="' + stringVars + '" wmode="transparent" allowScriptAccess="always" quality="high" bgcolor="#FFFFFF"  WIDTH="' + flashWidth + '" HEIGHT="' + flashHeight + '" NAME="flashObject" TYPE = "application/x-shockwave-flash" PLUGINSPAGE = "http://www.macromedia.com/go/getflashplayer"></EMBED>');

	document.write('</OBJECT>');
}


// Roll over
function menuOver(obj) { obj.src = obj.src.replace("_off.gif", "_on.gif");}
function menuOut(obj) { obj.src = obj.src.replace("_on.gif", "_off.gif");}
