@zerokilled se me ocurrió ¿y usando la función eval()?
Código Javascript
:
Ver original<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
function b(id){
alert(document.getElementById(id).value)
}
function funcion(a){
eval(a)(a);
}
</script>
</head>
<body>
<form>
<input type="checkbox" id="b" value="1" onclick="funcion(this.id);" />
</form>
</body>
</html>