I'm really not sure i understand your question... are you saying that you'd like to take form variables and convert them to ... something else ... so that you can get another HTML page? I don't understand what you mean by no server access and no WAMP installed... this is a web page, right?
I'll use that as an example in any case:
<input type="text" id="name" style="width: 200px;">
<input type="checkbox" id="somecheck">
<input type="button" value="test" onClick="doTest()">
<script>
function doTest()
{
var theName = document.getElementById('name');
var isChecked = (document.getElementById('somecheck').checked) ? '1' : '0';
var newURL = '/anotherPage.php?name=' + theName + '&ischecked=' + isChecked;
top.location = newURL;
}
</script>
I have no idea if that helps, but if I'm way off ping again.
/p