function select_pic()
{
num= Math.round(0.5+(111*(Math.random())));
return num;  
}

document.write("<IMG SRC=");
document.write("\"images/rndpic/");
document.write(select_pic(), ".jpg\"");
document.write("ALT=\"Images\" WIDTH=260 HEIGHT=285 BORDER=0>");
