<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script language="javascript1.2">
function selecionaAction(pagina, metodo)
{
	document.form1.action = pagina;
	document.form1.method = metodo;
	document.form1.submit();
}
</script>
</head>

<body>
<form name="form1" action="">
<input name="botao1" type="button" value="Bot�o 1" onclick="selecionaAction('http://www.uol.com.br', 'post')" />&nbsp;
<input name="botao2" type="button" value="Bot�o 2" onclick="selecionaAction('http://www.ultimosegundo.com.br', 'get')" />&nbsp;
<input name="botao3" type="button" value="Bot�o 3" onclick="selecionaAction('http://www.terra.com.br', 'get')" />&nbsp;
</form>
</body>
</html>