text field i got the following error? Fonts should be embedded for any text that may be edited at runtime, other than text with the "Use Device Fonts" setting. Use the Text > Font Embedding command to embed fonts.
can anybody help me to correct this error?
i wrote the following code but its not properly working...
<script language="javascript">
var r=form1.gen;
function valid()
{
if(r==null)
{
alert("No Button is selected");
return false;
}
}
</script>
<html>
<body>
<form name="form">
<input type ="radio" name="gen"value="male">MALE<br>
<input...