⟩ How to open a window with no toolbar, but with the location object?
window.open
(
"http://www.rendc.org",
"Online Web Tutorials",
"resizable=yes, " +
"status=yes," +
"toolbar=yes," +
"location=yes," +
"menubar=yes," +
"scrollbars=yes," +
"width=800," +
"height=400"
);