// Specify the first and last part of the image tag. 
FirstPart = '<img src="images/tag';
LastPart = '.gif" height="30" width="390">';
function printImage() {
var r = Math.ceil(Math.random() * 5);
document.write(FirstPart + r + LastPart);
}
 	

