function giveLong() {
  var long1 = 2.33;
  var long2 = 30.54;
  return Math.round((Math.random()*(long2-long1)+long1)*10000)/10000;
}

function giveLat() {
  var lat1 = 46.49;
  var lat2 = 51.01;
  return Math.round((Math.random()*(lat2-lat1)+lat1)*10000)/10000;
}

function getImgSrc(string) {
  return "http://maps.google.com/maps/api/staticmap?center=" + string + "&zoom=14&size=300x300&maptype=satellite&sensor=false&key=ABQIAAAAhX84ISisfMWSzyxvfGHceRTb0wH__0sFCcEYfsbTHqeSX6woBxSZh82LfVr3DmtB8F-FwZu9Ry6qhQ";
}

function getHref(string) {
  return "http://maps.google.com/maps?f=q&t=k&source=s_q&ll=" + string + "&spn=0.012397,0.027595&t=h&z=14";
}

for(var i=1; i < 10; i++) {
  var coords = giveLat() + "," + giveLong();
  var GMimage = document.getElementById("GMimg"+i);
  GMimage.setAttribute("src", getImgSrc(coords));
  var GMhref = document.getElementById("GMhref"+i);
  GMhref.setAttribute("href", getHref(coords));
}
