=/ why are u trying to write javascript into the page?
anyway after i removed where u were trying to write the javascript into the page it worked
code:
<html>
<HEAD>
<SCRIPT language="javascript">
<!--
function getversion(){
if(navigator.appName.indexOf("Netscape")>-1){
document.write("Press ctrl+d to bookmark this page");
}
else if((navigator.appName.indexOf("Microsoft")>-1) || (navigator.appName.indexOf("MSIE")>-1)){
var version=parseInt(navigator.appVersion)
var isIE=navigator.appVersion.indexOf("MSIE")>0
var isIE4=isIE&&version>=4;
if (isIE4) {
document.write('<a href="javascript:window.external.AddFavorite(document.location,document.title)">Bookmark This Site<\/a>')
}
}
else if(navigator.appName.indexOf("Opera")>-1){
document.write("Please feel free to bookmark this page");
}
else{
document.write("Please feel free to bookmark this page");
}
}
// -->
</SCRIPT>
</HEAD>
<BODY>
<SCRIPT language="javascript">
getversion();
</script>
</BODY>
</html>