<input type="checkbox" name="ice" onclick="checkIt(this)"/>
<input type="checkbox" name="ice" onclick="checkIt(this)"/>
<input type="checkbox" name="ice" onclick="checkIt(this)"/>
<input type="checkbox" name="ice" onclick="checkIt(this)"/>
<input type="checkbox" name="ice" onclick="checkIt(this)"/>
<script language="javascript">
<!--
var lastCheck = null;
function checkIt( e )
{
if( lastCheck != null )
lastCheck.checked = false;
lastCheck = e;
}
//-->
</script>