function Focus()
{
	document.myform.name.focus();
}
function reset()
{
	document.myform.reset();
}
function check(ctg)
{
	var form=document.myform;
	if(ctg==1 || ctg==2){
	if(!form.location.value)
	{
		alert("Input the Location!");
		form.location.focus();
		return ;
	}
	if(!form.subject.value)
	{
		alert("Input the Title! ");
		form.subject.focus();
		return ;
	}
	if(!form.content.value)
	{
		alert("Input the content!");
		form.content.focus();
		return ;
	}
  }else{
  if(!form.subject.value)
	{
		alert("Input the Title! ");
		form.subject.focus();
		return ;
	}
	if(!form.content.value)
	{
		alert("Input the content!");
		form.content.focus();
		return ;
	}
  }	
	form.submit();

}

function mode(num)
{
	var f=document.myform;

	if(num==1){

		//f.action="bbs.php";
		f.inc.value="list";
	}
	else if(num==2)
		{

			f.inc.value="mod";
		}
		else if(num==3)
			{

				f.inc.value="reply";
			}
			else
				{
					f.inc.value="del";
				}
				//f.action="./bbs.php";
				f.submit();

			}
