- modules/fotolab updated imagej to current version & some cod fixes to make it work
[care2x.git] / Care2007 / include / inc_js_editor_chkform.php
blob694adb4e34870f8b06d908bd174c829ed87e60bf
1 function chkForm()
3 d=document.selectform;
5 if(d.newstitle.value=="")
7 alert("<?php echo $LDAlertTitle ?>");
8 d.newstitle.focus();
9 return false;
11 else if(d.newsbody.value=="")
13 alert("<?php echo $LDAlertNews ?>");
14 return false;
16 else if(d.author.value=="")
18 alert("<?php echo $LDAlertAuthor ?>");
19 d.author.focus();
20 return false;
22 else if(d.publishdate.value=="")
24 alert("<?php echo $LDAlertDate ?>");
25 d.publishdate.focus();
26 return false;
28 else return true;