Page is a not externally linkable
mbabuskov - 5:36 am on Apr 11, 2011 (gmt 0)
[edited by: tedster at 6:59 am (utc) on Apr 11, 2011]
Is it possible that 'config' is a variable and you really meant to write:
window.open(options[selectedIndex].value,'_blank',config);
The 3rd parameter to window.open controls whether you have navigation, menu, statusbar, etc. If you want the default one, then omit the parameter completely:
window.open(options[selectedIndex].value,'_blank',config);
Otherwise, you can specify what you want:
window.open(options[selectedIndex].value,'_blank','toolbar=1,location=1');
HTH
--
Milan B.