function checkform(inForm) {
if (inForm.country.selectedIndex == 0) {
	alert("請選擇國家及地區");
	return false;
}
if (inForm.category.value == "") {
	alert("請選擇分類或是輸入分類編號");
	return false;
}
if (inForm.title.value == "") {
	alert("請輸入標題");
	return false;
}
if (inForm.name.value == "") {
	alert("請輸入聯絡人資料");
	return false;
}
if (inForm.content.value == "") {
	alert("請輸入內容");
	return false;
}
if (inForm.pass.value == "") {
	alert("請輸入刪除用密碼");
	return false;
}
if (inForm.confirmtext.value == "") {
	alert("請輸入刊登認證碼");
	return false;
}
return true;

}