/*--------------------------------------------------------------------------------------------------------------------------------------------------------------
############################################################## BOARD ####################################################################
--------------------------------------------------------------------------------------------------------------------------------------------------------------*/
function BDWriteForm()
{
	var m = document.getElementById("tt");
	if(m.value=="")
	{
		alert("Á¦¸ñÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.");
		m.focus();
		return;
	}
	m = document.getElementById("bd");
	if(m.value=="")
	{
		alert("³»¿ëÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.");
		m.focus();
		return;
	}
	
	document.writeForm.submit();
}

function BDSearchForm()
{
	var m = document.getElementById("sTx");
	if(m.value=="")
	{
		alert("°Ë»ö¾î¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.");
		m.focus();
		return false;
	}	
}

function BDViewForm( urls )
{
	if(confirm("»èÁ¦ÇÏ½Ã°Ú½À´Ï±î? "))
	{
		location.href = urls;
	}
}
