JavaScript Tutorial/MS JScript/win16
@_win16
The @_win16 variable determines if a win16 system is being used. When the variable is not true, it is defined as NaN.
<html>
<script language="JScript">
<!--
@if (@_win16)
alert("You are using a win16 system.");
@else
alert("You are NOT using a win16 system.");
@end
-->
</script>
</html>