if you want to send multiple parameters to any javascript function then you can easily dot his by using semicolon(,) between the paramerters
like this:
Code:
onclick=\"checkData(noid.value,status)\
The actual javascript function must contain the same number of parameters in its definition
Like this:
Code:
<scripts>
function checkData(noid,status){
................................
}
</scripts>
Hope this helpes you