function loadPictures() {
//medium
	imagea = new Image();	imagea.src = "gifs/mezzanine_floors_medium.jpg"; 
//large
	imagea = new Image();	imagea.src = "gifs/mezzanine_floors_large.jpg";
} 

function newImage(imagename,imagewidth,imageheight) {
   var newfile = imagename;
   var result;
   result = imagename.indexOf("mezzanine_floors");
   if (result != -1) {newfile="gifs/mezzanine_floors_large.jpg";} 

   newscreen=window.open(newfile,'_top','toolbar=no,location=no,directories=no, status=no,  screenX=100, screenY=30, left=100, top=30, scrollbars=no, resizable=yes, copyhistory=no, width=500, height=480');
}
function replaceImage(imageLoc,imageName, imageWidth, imageHeight) {
	document.images[imageLoc].src = imageName;
	document.images[imageLoc].width = imageWidth;
	document.images[imageLoc].height = imageHeight;
	return true;
	}
function replaceText(textName) {
	document.formText.picText.value = textName;
	return true;
	}
var mezzanineFloors="Mezzanine floors provide a cost effective solution to the problem of lack of floor space without the need to move premises.  Brookstore offer a complete design and build service including drawings and will offer advice on meeting the legal requirements of the Local Authorities regarding Building Regulation approval.";
