
function g_FileUpload(oForm)
{

	oForm.JwEditor.ImgFileReadUrl = CONST_SITE_URL;
	//ÀÌ¹ÌÁö  ¾÷·Îµå --------------------------------------------------------------

	if (oForm.JwEditor.HttpSendImg(CONST_UPLOAD_FILE_URL + "?Gubun=image") < 0)
	{ 
		alert(oForm.JwEditor.GetHTTPErrText());
		event.ReturnValue = false;
		return false;
	}

	//ÇÃ·¡½Ã, ¹Ìµð¾î ¾÷·Îµå --------------------------------------------------------------
	if (oForm.JwEditor.HttpSendMediaFlash(CONST_UPLOAD_FILE_URL + "?Gubun=media") < 0)
	{ 
		alert(oForm.JwEditor.GetHTTPErrText());
		event.ReturnValue = false;
		return false;
	}

	//-----------------------------------------------------------------------------------
	oForm.content.value = oForm.JwEditor.BodyHtml;

	return true;
}

function g_FileUploadPath(oForm, path, isminihome)
{
	
	oForm.JwEditor.ImgFileReadUrl = CONST_SITE_URL;
	//ÀÌ¹ÌÁö  ¾÷·Îµå --------------------------------------------------------------
	if (oForm.JwEditor.HttpSendImg(CONST_UPLOAD_FILE_URL + "?Gubun=image&folder="+path+"&isminihome="+isminihome) < 0)
	{
		alert(oForm.JwEditor.GetHTTPErrText());
		event.ReturnValue = false;
		return false;
	}
	//ÇÃ·¡½Ã, ¹Ìµð¾î ¾÷·Îµå --------------------------------------------------------------
	if (oForm.JwEditor.HttpSendMediaFlash(CONST_UPLOAD_FILE_URL + "?Gubun=media&folder="+path) < 0)
	{
		alert(oForm.JwEditor.GetHTTPErrText());
		event.ReturnValue = false;
		return false;
	}
	//-----------------------------------------------------------------------------------
	oForm.content.value = oForm.JwEditor.BodyHtml;
	return true;
}
