// status captions for menu rollOver
var bpl = new Array('hp_bigpic1.jpg','hp_bigpic2.jpg','hp_bigpic3.jpg');
var mpl = new Array('hp_medpic1.jpg','hp_medpic2.jpg','hp_medpic3.jpg','hp_medpic4.jpg','hp_medpic5.jpg','hp_medpic6.jpg','hp_medpic7.jpg');
var spl = new Array('hp_smallpic1.jpg','hp_smallpic2.jpg','hp_smallpic3.jpg','hp_smallpic4.jpg','hp_smallpic5.jpg','hp_smallpic6.jpg','hp_smallpic7.jpg','hp_smallpic8.jpg','hp_smallpic9.jpg','hp_smallpic10.jpg');

function insertPic(array) {
	var ind =  Math.floor(Math.random() * array.length);
	document.open();
	var filePath = "0703/img/";
	document.writeln('<img src="' + filePath + array[ind] + '">');
	document.close();
	array.splice(ind, 1);
}