Can anyone figure out why this does not 'seem' to work correctly and what might be done to achieve the desired result?
Clive
Code:
<script>
var1=unescape('')
var2=unescape('Ž')
var3=unescape('')
document.writeln("var1="+var1+"<br />")
document.writeln("var2="+var2+"<br />")
document.writeln("var3="+var3+"<br />")
if (var1==var3) {
document.write('var1=var3? - TRUE <br />')
}else{
document.write('var1=var3? - FALSE <br />')
}
if (var1==var2){
document.write('var1=var2? - FALSE <br />')
}else{
document.write('var1=var2? - TRUE <br />')
}
</script>
Clive