function chktext(obj) {
 if (!obj.value) {
   chktext[obj.name] = false
   alert("この項目は必ず入力してください")
   if(!!obj.style)obj.style.backgroundColor='orange'
 }
 else {
   chktext[obj.name] = true  
   if(!!obj.style)obj.style.backgroundColor='white'
 }
}
document.write("<p>※名前：<input type=\"text\" size=\"40\" name=\"name\" value=\"\" onblur=\"chktext(this)\"></p>");
document.write("<p>※住所：<input type=\"text\" size=\"40\" name=\"address\" value=\"\" onblur=\"chktext(this)\"></p>");
