Opening frames in a separate page and NOT by "document.write" Hello everyone I am using a search form which, on submission, uses document.write to produce a page with two frames. this is the document.write code: Code: function search2(item){ stringPlus(); resultsWindow=window.open('', 'SSearch', 'toolbar=yes,location=no,directories=no,status=yes,menubar=yes,width=1000,height=600,resizable=1,scr ollbars=auto'); resultsWindow.document.open(); resultsWindow.document.write("
Images"); resultsWindow.document.write("
"); resultsWindow.document.close(); ...