


document.write(" <TABLE bgcolor=white border=1 BORDERCOLOR=black cellpadding=15 cellspacing=0 > ");
document.write(" <TR><TD WIDTH=100% VALIGN=top> ");

document.write(" <H1> Map widget </H1> ");
document.write(" From <A target=_blank HREF=http://markhumphrys.com/>MarkHumphrys.com</A>.<BR> ");
document.write(" See <A target=_blank HREF=http://markhumphrys.com/maps.all.html>All maps</A>.<br> ");
document.write(" <form> Embed code: ");
document.write(" <input size=20  value='&lt;script src=http://markhumphrys.com/map.random.js&gt;&lt;/script&gt;'> </form><P> ");
 

// script rotates randomly among map pages 0 to MAXMAP
// edit this:

	var MAXMAP = 33;


// a number from 0 to MAXMAP:

var m = Math.floor ( Math.random() * (MAXMAP+1) );


// debug an individual one:
//	m = 26;


var mapfile = "http://markhumphrys.com/map."+m+".html";

document.write(" <iframe frameborder=0 src="+mapfile+" width=260 height=450 ></iframe> ");

document.write(" </td></TR></TABLE> ");


