sample.html
<html>
.....
<tr onclick="callnxtpg(this)">
</tr>
.....
<script>
function callnxtpag(obj){
window.location="someotherlocation.html&obj="+obj;
}
</script>
someotherlocation.html
<html>
...
<script>
var obj=returnData(obj);
alert(obj.childNodes[0].innerHTML);
</script>
....
</html>
Мой вопрос: можно ли каким-либо образом напрямую передавать объект элемента одной страницы другому?