Hi,
use window.open(filename?parameterlist);
and in the target html file
call a function onload of html and
use
url = this.location.href
// this would give the entire url
// use split command to retrieve various values
// this returns an array with tokens - just like
string tokenizer in
java parameterList=url.split("?")
// use your parameter separator instead of ?
and then use split again on the parameterList[0] to total to retrieve the values..
Balaji