
	// ÄÁÆß ¸Þ¼¼Áö ¹Ú½º
	
	function ConfirmJavaScript(JSMessage,JSGotoPageURL) 
	{
			
		var ConFirmTxt = confirm(JSMessage);  
	
		if(ConFirmTxt){
			document.location.href = JSGotoPageURL;
		}	
		else{
			return;
		}	
	}	
	
		
	function documentwrite(GotoSrcString)
	{
		document.write(GotoSrcString);
	}

	//ÇÃ·¡½¬ ÄÚµå

	function MakeFlashString(FlashFileURL,WIdthSize,HeightSize,WmodeString,FlashNameString,AlignString) 
	{
		if(WmodeString == "1")
		{
			return "<OBJECT classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\"  codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" WIDTH=\""+WIdthSize+"\" HEIGHT=\""+HeightSize+"\" id=\""+FlashNameString+"\" ALIGN=\""+AlignString+"\"><PARAM NAME=movie VALUE=\""+FlashFileURL+"\"><PARAM NAME=quality VALUE=high><PARAM NAME=\"allowScriptAccess\" VALUE=\"sameDomain\" /><PARAM NAME=\"wmode\" VALUE=\"transparent\" /><PARAM NAME=\"menu\" VALUE=\"false\" /><EMBED src=\""+FlashFileURL+"\" quality=high bgcolor=#DDDDDD WIDTH=\""+WIdthSize+"\" HEIGHT=\""+HeightSize+"\" NAME=\""+FlashNameString+"\" ALIGN=\""+AlignString+"\" TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\" swLiveConnect=true></EMBED></OBJECT>";
		}
		else
		{
			return "<EMBED src=\""+FlashFileURL+"\" quality=high bgcolor=#DDDDDD WIDTH=\""+WIdthSize+"\" HEIGHT=\""+HeightSize+"\" ID=\""+FlashNameString+"\" NAME=\""+FlashNameString+"\" ALIGN=\""+AlignString+"\" TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\" swLiveConnect=true allowScriptAccess=sameDomain></EMBED>";
		}										
	}


	// ¸ÞÀÏ°ü·Ã.
	function uploadflash_DoFSCommand(command, args) 
	{
	  var uploadflashObj = InternetExplorer ? uploadflash : document.uploadflash;
	  
		//¸ðµç ³»¿ëÀ» ÀÛ¼ºÇÏ°í ¿Ï·áÇßÀ»°æ¿ì ½ÇÇàµÇ´Â ºÎºÐÀÔ´Ï´Ù.
		if(args == "upload"){

			// ÇÃ·¡½Ã embed½ÃÅ³¶§ id¹× name°ª.
			var obj			= document.getElementById('uploadflash');

			//ÇÃ·¡½Ã¿¡¼­ ÀÛ¼ºµÈ ³»¿ëµéÀ» °¡Á®¿À´Â ºÎºÐ.
			//ÆÄÀÏÃ·ºÎºÎºÐ ¶§¹®¿¡ loadVariableÀ» »ç¿ëÇÏÁö ¸øÇß³×¿ä.
			var val_subject = obj.GetVariable("/_level20/stpe1/stpe2:subject");
			var val_email = obj.GetVariable("/_level20/stpe1/stpe2:email");
			var val_message = obj.GetVariable("/_level20/stpe1/stpe2:message");

			var todayDate = new Date(); 

			var val = todayDate.getTime(); 

			//°¡Á®¿Â Á¤º¸µéÀ» ÄíÅ°·Î »ý¼ºÇÏ´Â ºÎºÐ. (phpÂÊÀ¸·Î µ¥ÀÌÅÍ¸¦ ³Ñ±â±â À§ÇÔÀÔ´Ï´Ù. ¸ÞÀÏ¹ß¼ÛÈÄ ÄíÅ°´Â ¹Ù·Î »èÁ¦µË´Ï´Ù.)
			todayDate.setTime(todayDate.getTime()+100000); 
			document.cookie =  "subject=" + val_subject + "; path=/;expires=" + todayDate.toGMTString() + ";";
			document.cookie =  "email=" + val_email + "; path=/;expires=" + todayDate.toGMTString() + ";";
			document.cookie =  "message=" + val_message + "; path=/;expires=" + todayDate.toGMTString() + ";";

			mail_upload.document.upload.submit();
		}
		
		//Ã·ºÎÆÄÀÏ Ã£±â ¹öÆ° Å¬¸¯½Ã ½ÇÇàµÇ´Â ºÎºÐ.
		if(args == "browse"){
			mail_upload.document.upload.file.click();
				while(mail_upload.document.upload.file.Value == ""){
					setTimeout(100);
				}
			mail_upload.idio_controller();
		}

		//Ã·ºÎÆÄÀÏ Ãë¼Ò ¹öÆ° Å¬¸¯½Ã ½ÇÇàµÇ´Â ºÎºÐ.
		if(args == "unload"){
			mail_upload.document.upload.file.value == "";
		}
	  
	}
