You might show us what you've tried. For something simple like that, the sending page can have this on it:
HTML Code:
<a href="nextpage.htm?var1=albania">Click here to go Albanian Style!</a>
Then on the recieving page have:
Code:
<script type="text/javascript">
var text = unescape(window.location.href);
function delineate(str) {
theleft = str.indexOf("=") + 1;
theright = str.indexOf("&");
return(str.substring(theleft, str.length));
}
var sentInfo=delineate(text)
document.write(sentInfo);
</script>
Bookmarks