<fieldset style="width:395px;height:90px;float:left;">
				<legend style="margin-bottom:10px;">MÉTODO SMTP</legend>
				<table width="100%">
					<tr class="trDOWN">
						<td align="center"><input type="radio" name="metodoSmtp" id ="smtpGmail" value="smtpGmail" <?php 
    if (metodo() == "smtpGmail") {
        ?>
 checked <?php 
    }
    ?>
/></td>
						<td align="left" style="padding-left:5px;"><label for="smtpGmail">Smtp do Gmail</label></td>
					</tr>
					<tr class="trDOWN">
						<td align="center"><input type="radio" name="metodoSmtp" id ="Hospedagem" value="Hospedagem" <?php 
    if (metodo() == "Hospedagem") {
        ?>
 checked <?php 
    }
    ?>
/></td>
						<td align="left" style="padding-left:5px;"><label for="Hospedagem">Smtp da Hospedagem</label></td>
					</tr>
				</table>
			</fieldset>
			<fieldset style="width:395px;height:90px;float:right;">
				<legend>REMETENTE</legend>
				<table>
					<tr>
						<td align="right"> ID REMETENTE:
							<select name="id_remetente">
      <div class="X1">
        Método:
      </div>
      <div class="X2">
        <input class="X3" style="color:rgba(255,255,255,0.5);" name="metodo_displayon" type="text" size="50" value="<?php 
if (metodo() == "Hospedagem") {
    echo "Smtp da Hospedagem";
} else {
    if (metodo() == "smtpGmail") {
        echo "Smtp do Gmail";
    }
}
?>
" disabled/>
        <input style="display:none;" name="metodo" type="text" size="50" value="<?php 
echo metodo();
?>
"/>
      </div>
      <!-- ANEXO -->
      <div class="X1">
        ANEXO: (NAO ANEXAR!)
      </div>
      <div class="X2">
        <input style="width:98%;" type="file" name="anexo"/>
      </div>
      <div style="clear:both;"><br/><hr/></div>
      <div style="float:right;">
        <input style="width:100px;border:1px solid rgba(0,0,0,0.8);" type="submit" name="Submit" value="Enviar"/>
      </div>