I tried using this
<input type="text" name="commentID" id="commentID" onkeyup="userTyped('skipID', this)"/>
<input type="checkbox" name="skipID" value="N" id="skipID" checked="checked" />
and the javascript
function userTyped(commen, e){
if(e.value.length > 0){
document.getElementById(commen).checked=false;
}else{
document.getElementById(commen).checked=true;
}}
It works on JSfiddle, "EXAMPLE" but i can't seem to make it work on dreamweaver, and only if I use one textbox, I want the checkbox to be unchecked automatically only after three textbox is filled.