<!--
/*********************************************************************************
** Warning!! All coding copyright of C.Odukwe - webmaster for CNO Designs Ltd. **
** to copy or use any code e-mail "chiedu@cnodesigns.co.uk"                     **
*********************************************************************************/

// Generates random image on every reload
// image selection - must be jpg or gif

ImgChoice = new Array("indexpic","pic2","pic3","pic4","pic5","pic6");
PicCount = ImgChoice.length;

randomNum = Math.floor((Math.random() * PicCount));
var NewPic = ImgChoice[randomNum];
var NewPicURL = ("<img src='images/" + NewPic+ ".jpg' alt='The Art of Creativity and Simplicity in Internet Development' width=183 height=168>"); // change to .gif if necessary
// -->