J
Jonathan Atkinson
Hi,
I have a very simple function to open a help window:
function help_window(url, width, height) {
help_window = open('/Help/'+url,
'help_window','toolbar=0,directory=0,status=0,menubar=0,scrollbars=1,resizable=0,width='+width
+',height='+height);
help_window.focus();
}
I have a very simple function to open a help window:
function help_window(url, width, height) {
help_window = open('/Help/'+url,
'help_window','toolbar=0,directory=0,status=0,menubar=0,scrollbars=1,resizable=0,width='+width
+',height='+height);
help_window.focus();
}