// JavaScript Document
// message to show in non-IE browsers
var txt = ""
var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")||(num >= 5)) {
   document.write('<a href="javascript:;" onClick="SomeJSFunction');
   document.write("('pl',true)")
   document.write('">'+ 'Select all' + '</a>')
}else{
   document.write(txt)
} 