#!/usr/bin/bash
echo Content-type: text/html
echo 
T=`expr substr $RANDOM 2 2`
R=`expr $T  / 10`
case $R in
0|1|2|3) cat node050.html ;;
4|5|6) cat node053.html ;;
7|8|9) cat node045.html ;;
esac
