function homepage()
{
//4
var ranNum= Math.round(Math.random() * 3);
if (ranNum == 0){document.write('
'); } // NEW2
if (ranNum == 1){document.write(''); } // NEW3
if (ranNum == 2){document.write(' '); } // NEW4
if (ranNum == 3){document.write(''); } // NEW5
}