function sendit()
{
	var str=document.Boardform.Board_Name.value;
	if(str=="")
	{
		alert("ÀÛ¼ºÀÚ¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿ä");
		document.Boardform.Board_Name.focus();
		return;
	}
	str=document.Boardform.Board_Title.value;
	if(str=="")
	{
		alert("Á¦¸ñÀ» ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿ä");
		document.Boardform.Board_Title.focus();
		return;
	}	

		ShowProgress();
		document.Boardform.submit();
		return;
	}

function ShowProgress()
{
	strAppVersion = navigator.appVersion;
	
	if (document.Boardform.Board_File.value!="" ) {
		if (strAppVersion.indexOf('MSIE') != -1 && strAppVersion.substr(strAppVersion.indexOf('MSIE')+5,1) > 4) {
			winstyle = "dialogWidth=385px; dialogHeight:160px; center:yes";
			window.showModelessDialog("/Progress/show_progress.asp?nav=ie", null, winstyle);
		}
		else {
			winpos = "left=" + ((window.screen.width-380)/2) + ",top=" + ((window.screen.height-110)/2);
			winstyle="width=380,height=110,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no,copyhistory=no," + winpos;
			window.open("/Progress/show_progress.asp?nav=ns",null,winstyle);
		}
	}
	
	return true;
}
function showReSearchForm(obj){

	document.all.divSearch.style.display=""		
	document.ReSearchForm.SearchWD.focus();
		
}
function changeSearchPart(o)
{
	var oSearchImg = document.all.searchImg;
	for(var i=0; i < oSearchImg.length; i++)
	{
		oSearchImg[i].src = "/ReViewBoard/img/check01.gif";
	}
	
	o.src = "/ReViewBoard/img/check.gif";
	document.ReSearchForm.SearchType.value= o.key;
}
function ReViewS()
{
	var str=document.ReSearchForm.SearchWD.value;
	
	if (str=="")
	{
		alert("°Ë»öÇÒ ´Ü¾î¸¦ ÀÔ·ÂÇÏ¿© ÁÖ½Ê½Ã¿ä.");
		document.ReSearchForm.SearchWD.focus();
		return;
	}
	document.ReSearchForm.submit();
	return;
	
}
function FLoad()
{
document.ReSearchForm.SearchType.value='Title';
}

