I want a table to be displayed depending on whether a check box is marked or not. I am doing this by the onClick event.

Code:
<input type = checkbox name = "temp" size = 4 maxlength = 4 value = "90" onClick=getTable()>
But how do I write the code? Any suggestions for the JavaScript code? Can I include the request.querystring("temp") in the JavaScript function?

Code:
<script language=javascript>
function getTable() 
{
 ???	
}	
</script>