function ponerform2($xid,$nom,$mail,$sexo,$pais){
//Modificar suscripcion
$xid=trim($xid);
if ($xid == "upd") {
//Solicito para buscar suscripcion a modificar
// carteldealerta("ACA NO deberia entrar");
echo('<form action="f2a.php?cual=2" method="post" name="formususcrip" target="_top" id="formsuscrip" onsubmit="MM_validateForm("nombres","","R","mail","","RisEmail");return document.MM_returnValue">');
echo('<p class="Letrachiquita>"' . $cartel . '</p>');
echo('<hr />');
echo('<p class="Letrachiquita">Apellidos y Nombre:');
echo('<p><input name="nombres" type="text" id="nombres" size="40" maxlength="40" /></p>');
echo('<p class="Letrachiquita">Mail: </p>');
echo('<p class="Letrachiquita"><input name="mail" type="text" id="mail" size="40" maxlength="40" /></p>');
echo('</p><div align="left">');
echo('<input name="Buscar" type="submit" id="busc" onclick="MM_validateForm("nombres","","R");');
echo('MM_validateForm("mail","","RisEmail");');
echo('return document.MM_returnValue" value="Buscar>>"/>');
echo('<input name="resy" type="reset" id="restab" value="<<Restablecer" />');
echo('</div><hr/>');
echo('</form>');
}
else {
//Datos de suscripcion a modificar
//carteldealerta("Ahora anda bien");
echo('<form action="f2a.php?cual=4" method="post" name="formususcrip" target="_top" id="formsuscrip" onsubmit= "MM_validateForm("nombres","","R","mail","","RisEmail");return document.MM_returnValue">');
echo('<p class="Letrachiquita>"' . $cartel . '</p>');
echo('<hr />');
echo('<p class="Letrachiquita">Código:' . $xid );
echo('<input id="codigo" style="visibility:hidden" type="text" name="codigo"/>');
echo('<p class="Letrachiquita">Apellidos y Nombre:');
echo('<p><input name="nombres" type="text" id="nombres" size="40" maxlength="40" /></p>');
echo('<p class="Letrachiquita">Mail: </p>');
echo('<p class="Letrachiquita"><input name="mail" type="text" id="mail" size="40" maxlength="40" /></p>');
echo('<p class="Letrachiquita">Sexo:</p>');
echo('<p class="Letrachiquita">');
echo('<label><input type="radio" name="sexo" value="F" id="sexo_0" />F</label>');
echo('
<label><input type="radio" name="sexo" value="M" id="sexo_1" />');
echo('M</label>
</p><p class="Letrachiquita">');
/*para llenar un combobox con los datos de una lista maestra de base de datos. */
ponerpaises();
echo('</p><div align="left">');
echo('<input name="Suscribe" type="submit" id="Suscribe"
onclick="MM_validateForm("nombres","","R");
MM_validateForm("mail","","RisEmail");
return document.MM_returnValue" value="Suscribir>>"/>
<input name="restable" type="reset" id="restablec" value="<<Restablecer" />
</div><hr/>
</form>');
cambiavalores($xid,$nom,$mail,$sexo,$pais);
}
}