VBScript Random text
Random text
<html>
<body>
<script type="text/vbscript">
randomize()
r=rnd()
if r>0.5 then
document.write("Text #1")
else
document.write("Text #2")
end if
</script>
</body>
</html>
<html>
<body>
<script type="text/vbscript">
randomize()
r=rnd()
if r>0.5 then
document.write("Text #1")
else
document.write("Text #2")
end if
</script>
</body>
</html>