как-то так я бы делал.
==
<head><script language="javascript">
<!--
function goto (a){
f=document.getElementById("myform");
t=document.getElementById("to");
if(t==null || f==null)return false;
t.value=a;
f.submit();
return false;
}
//-->
</script>
</head>
<body>
<form id=myform name=myform method=get action=index.html>
<input type=hidden id=to name=to value="+a+">
</form>
<a href="" onclick='return goto("home")'>HOME</a>
<a href="" onclick='return goto("fuck")'>FUCK</a>
</body>
==
ну и у формы method=post
|