<html>
<body>
<form>
<input type="radio" id="radio1" checked="checked" />
</form>
<script type="text/javascript">
alert(document.getElementById("radio1").defaultChecked);
</script>
</body>
</html>