//Ä«Å×°í¸® ¼ÒÆ®¾÷
function productSortUp(idx){
	var f = document.form1;
	f.idx.value = idx;
	f.mode2.value = "up";
	f.submit();
}
//Ä«Å×°í¸® ¼ÒÆ®´Ù¿î
function productSortDown(idx){
	var f = document.form1;
	f.idx.value = idx;
	f.mode2.value = "down";
	f.submit();
}
//¼­ºê¹Ô
function sendit()
{
	var f =document.form1;

	f.content3.value = SubmitHTML();


	if(!f.title.value.length)
	{
		alert("Á¦¸ñÀ» ÀÔ·ÂÇÏ¼¼¿ä.");
		f.title.focus();
		return false;
	}
	return true;
}
function imagePreview(src)
{
	document.getElementById('previewImg').src= "/FILE/productfile/"+src;
}
