doc/course/src/js/opener.js

Code
Comments
Other
Rev Date Author Line
4093 12 Jan 11 gregory 1 /* Opens a clean window with no toolbars, status bars or anything */
4093 12 Jan 11 gregory 2 function openWindow(url)
4093 12 Jan 11 gregory 3 {
4093 12 Jan 11 gregory 4   window.open(url, "prose", "height=700;width=810;status=no;toolbar=no;location=no;menubar=no;titlebar=no",false);
4093 12 Jan 11 gregory 5 }