function select_pic()
	{
	num= Math.round(0.5+(2*(Math.random())));
	return num;  
	}

document.write("<img src= \"");
document.write(select_pic(), ".jpg\"");
document.write("ALT=\"Saint Lawrence Church\" width=\"346\" height=\"250\">");
