<!-- 
function writeRandomImage(lang)
{
  var showAlt = "";
  if (lang == "showE") showAlt="Marymount Secondary School";
  else if (lang == "showB") showAlt="";

  iArray=new Array(
        "images/random_01.jpg",
	"images/random_02.jpg",
	"images/random_03.jpg",
	"images/random_04.jpg",
	"images/random_05.jpg",
	"images/random_06.jpg",
	"images/random_07.jpg",
	"images/random_08.jpg",
	"images/random_09.jpg",
	"images/random_10.jpg",
	"images/random_11.jpg",
	"images/random_02.jpg");
  ri=Math.floor(iArray.length*Math.random());
  ri='<IMG SRC="'+ iArray[ri]+ '" BORDER=0 alt="'+showAlt+'">';
  document.write(ri);
}
//--
