* the radio button value
*/
public XRadioButton( String id, String value )
{
super();
HTMLInputElement radio = (HTMLInputElement)htmlDoc.createElement( "INPUT" );
Node text = htmlDoc.getBody().getFirstChild().cloneNode( true );
radio.appendChild( text );
radio.getFirstChild().setNodeValue( value );
radio.setId( id );
radio.setAttribute( "type", "radio" );
inputElement = radio;
}