var browser_type=navigator.appName
var browser_version=parseInt(navigator.appVersion)

//if NS 6
if (browser_type=="Netscape"&&browser_version>=5)
document.write ("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">")
//if IE 3
else if (browser_type=="Microsoft Internet Explorer"&&browser_version<4) {
document.write ("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">")
document.write ("<center><b>Sorry, you are using an out-of-date browser which is unable to handle CSS.<br>As a result, the design of this page will be displayed incorrectly.<br>The information, however, should still be accessible.</b><p></center>")
}
//if NS 4
else if (browser_type=="Netscape"&&browser_version>=4)
document.write ("<center><b>Sorry, you are using an out-of-date browser which is unable to handle CSS.<br>As a result, the design of this page will be displayed incorrectly.<br>The information, however, should still be accessible.</b><p></center>")
//Default goto page (NOT NS 4+ and NOT IE 4+)
else
document.write ("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">");