function seeItClick( text ) { var wopts = "" // window options // Build the window options wopts += "toolbar=no," wopts += "location=no," wopts += "directories=no," wopts += "status=yes," wopts += "menubar=no," wopts += "scrollbars=no," wopts += "resizable=yes," wopts += "copyhistory=yes" wopts += "width=400,height=400" // // Create the document // // Create the window and write the document // into it. win = window.open( "", "YourHtml", wopts) win.document.open() win.document.write( text ) win.defaultStatus = "Click the close button to exit." win.document.close() } function seeItClick2( text ) { var wopts = "" // window options // Build the window options wopts += "toolbar=YES," wopts += "location=YES," wopts += "directories=no," wopts += "status=yes," wopts += "menubar=YES," wopts += "scrollbars=no," wopts += "resizable=yes," wopts += "copyhistory=yes" wopts += "width=400,height=400" win = window.open( "", "YourHtml", wopts) win.document.open() win.document.write( text ) win.defaultStatus = "Click the close button to exit." win.document.close() }

THIS IS A ADVANCE QUICK RUNNER EDITOR FOR HTML

Created By - Rohit Wadhwa

Then click to see what this HTML does.

Then click to see what this HTML does.

-Rohit Wadhwa

]]>