var 
    img = new Array("2","3","4","11","16","21","27","32","36","38","45","47","51","57","64","71","79","83","87","107","108","115","117","122","127","130","132","135");

function randLomo(){
	var number, string;
	number = Math.floor(Math.random()*(img.length));
	string = "<img height='192' width='282' src='lomos/"+ img[number] + "b.jpg' name='BigLomo'>";
	document.write (string);
}
