Image

By request

Do not use this script. It crashes my computer everytime I try to load it.


<body onUnload="totalRecall();"><script>

//onDragDrop= totalRecall();

//window.onUnload="totalRecall()";


function totalRecall() {

var oldURL2 ="http://my.yahoo.com";


var newURL =history.current;

var oldURL1 = history.previous;

//var oldURL2 = location.history(-2);


var superFrames =

"<frameset rows='20,*'>"+

" <frameset cols='*,*'>"+

" <frame src='(Empty Reference!)' name='s0'>"+

" <frameset cols='*,*'>"+

" <frame src="+oldURL1+" name='s1' >"+

" <frame src="+oldURL2+" name='s2' >"+

" </frameset>"+

"</frameset>"+

"<frame src='"+newURL+"' name='main'>"+

"</frameset>";


document.write(superFrames);

alert(superFrames);

} //end totalRecall


//history.go(-1)

//window.location.history.go(-2)

//history.current

// history.length

//history.next

//history.previous

//history.forward()

//history.back()

document.write(" history.length "+history.length +"<br>");

document.write(" history.current "+history.current +"<br>");

document.write(" history.previous "+history.previous +"<br>");

</script>