Open new windows in frames

admin

Administrator
Staff member
Using this statement I open a window. The problem is that it always adds to the same window in the frame, I need it to blank the window and then start from fresh - removing the previous information and just holding the new info.

Please help

stats='toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes'
stats += 'scrollbars=yes,resizable=yes'
MsgBox = window.open ("","resadtin2",stats)
MsgBox.opener = window;
MsgBox.opener.name = "opener";
MsgBox.document.write("<head><title>Search Results</title>");
 
Back
Top