");
var i = Math.round(Math.random()*1000);
var id = "image"+i;
document.write("");
var elem = document.getElementById(id);
var max = 70;
if (elem) {
if (elem.width > elem.height) {
if (elem.width > max) elem.width = max;
} else {
if (elem.height > max) elem.height = max;
}
}
document.write("