// JavaScript Document


// form object Rest
function inputF(elm,str){
	if(elm.value == str){
		elm.value = "";
		elm.style.color = '#000000';
	}
}
function inputB(elm,str){
	if(!elm.value.length){
		elm.value = str;
		elm.style.color = '#808080';
	}
}

