 function useable_check(form){
 	var form_title = form.title.value;
 	var form_keyword = form.keyword.value;
 	
 	if(!isEmpty(form_title) && !isEmpty(form_keyword)){
 		alert("표제와 키워드를 동시에 사용할 수 없습니다!!");
 		return false;
 	}
 	else{
 		if(isEmpty(form_title) && isEmpty(form_keyword)){
 			if(isEmpty(form.author.value) && isEmpty(form.publisher.value)){
	 			alert("반드시 표제나 키워드나 저자명이나 발행자중에 하나는 써넣아야 합니다!!");
 				return false;
 			}
 		}
 	}
 	form.submit;
 	return true;
 }
 
 function isEmpty(str) {
 for (var intLoop = 0; intLoop < str.length; intLoop++)
 	if ( (str.charAt(intLoop) != " ") &&  (str.charAt(intLoop)!= "\n") && (str.charAt(intLoop)!= "\r"))
 		return false;
 return true;
 }
