<!-- Begin
if (document.images) {
homemo=new Image;
homemo.src="graphics/buttons/homemo.gif";
biogmo=new Image;
biogmo.src="graphics/buttons/biogmo.gif";
gallery1mo=new Image;
gallery1mo.src="graphics/buttons/gallery_1mo.gif";
gallery2mo=new Image;
gallery2mo.src="graphics/buttons/gallery_2mo.gif";
gallery3mo=new Image;
gallery3mo.src="graphics/buttons/gallery_3mo.gif";
salesmo=new Image;
salesmo.src="graphics/buttons/salesmo.gif";
exhibitionsmo=new Image;
exhibitionsmo.src="graphics/buttons/exhibitionsmo.gif";
}

function swapImage(img_name,img_src)
{
document[img_name].src=img_src;
} 

function swapImage2(img_name1,img_src1,img_name2,img_src2)
{
document[img_name1].src=img_src1;
document[img_name2].src=img_src2;
} 

function launchCentre(url, name, width, height, scroll) {
  var str = "scrollbars=" + scroll + ",height=" + height + ",innerHeight=" + height;
  str += ",width=" + width + ",innerWidth=" + width;
  if (window.screen) {
    var ah = screen.availHeight - 30;
    var aw = screen.availWidth - 10;

    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;

    str += ",left=" + xc + ",screenX=" + xc;
    str += ",top=" + yc + ",screenY=" + yc;
  }
  return window.open(url, name, str);
}

// End -->