<input type=checkbox onclick=cc(this) value=a><br>
<input type=checkbox onclick=cc(this) value=b><br>
<input type=checkbox onclick=cc(this) value=c><br>
<iframe name=meizz frameborder=0 width=0 height=0></iframe><script language=javascript>
function cc(e)
{
   if(e.checked)
   document.all.meizz.src = "abc.asp?aa="+ e.value;
}
</script>