'+
'Click Here to learn how to do this in JavaScript
' +
'
Click here to close this window'+
'
This page is ' + document.URL + ' Bookmark it now!
';
options = "toolbar=1, status=1, menubar=1, scrollbars=1, resizable=1";
MyHomePage=window.open("","MyHomePage",options);
MyHomePage.document.writeln(content);
MyHomePage.document.close();
}
app=navigator.appName;
ver=navigator.appVersion;
ver=ver.substring(0,1);
ver=parseInt(ver);
img=false;
if ((app=="Netscape")&&(ver>=3)) {img=true}
if ((app=="Microsoft Internet Explorer")&&(ver>=4)) {img=true}
if ((app=="Microsoft Internet Explorer")&&(ver<4)) {
newWindow=window.open('','','width=400,height=350');
message='I see that you are using Microsoft '+
'Internet Explorer version 3. This browser has difficulty '+
'with a variety of JavaScript objects, methods, and events.'+
'It does not support JavaScript, but a Microsoft adaptation called '+
'Jscript.'+
'
The latest version, Internet Explorer 4, has fixed most of these '+
'problems so download version 4 as soon as possible.
It can be downloaded for free from:
'+
''+
'http://microsoft.com/ie/download/
but it is a rather large file (11+ MBytes!)
' +
'
';
newWindow.document.writeln(message);
newWindow.document.close();
}
// -->