asi se habla
lo que trato de hacer es poner unas imagenes para elejir y ademas la posibilidad de elejir una imagen propia desde un sitio (
http://url/img.gif)
<form name="form1" method="post" action="registro.asp">
NICK:
<input type="text" name="Nick" maxlength="15" onclick="document.forms[0].elements[6].disabled=true;"><br>
E-MAIL:
<input type="text" name="Email" maxlength="50" onclick="document.forms[0].elements[6].disabled=true;"><br>
CONTRASEÑA:
<input type="password" name="Contrasena" maxlength="10" onclick="document.forms[0].elements[6].disabled=true;"><br>
OPCION 1
<img src"img/uno.gif">
<input type="radio"
onclick="document.forms[0].elements[6].disabled=true;"
name="imagen"
value="img/uno.gif"><br>
OPCION 2
<img src"img/dos.gif">
<input type="radio"
onclick="document.forms[0].elements[6].disabled=true;"
name="imagen"
value="img/dos.gif"><br>
OPCION 3
<input type="radio"
onclick="document.forms[0].elements[6].disabled=false;"
name="imagen">
<input disabled="disabled"
type="text"
name="textoescrito"
value="http://url/imagen.gif">
<input type="submit" name="Submit" value="registrar">
</form>