function mouseOver(m) {
  findObj(m.id + 'LeftHoover').style.color = '#eeeeee';
  findObj(m.id + 'Caption').style.color = '#eeeeee';
  findObj(m.id + 'RightHoover').style.color = '#eeeeee';
  findObj(m.id + 'LeftHoover').style.fontWeight = '';
  findObj(m.id + 'Caption').style.fontWeight = '';
  findObj(m.id + 'RightHoover').style.fontWeight = '';
}

function mouseOut(m) {
  findObj(m.id + 'LeftHoover').style.color = '#a0a0a0';
  findObj(m.id + 'Caption').style.color = '#dddddd';
  findObj(m.id + 'RightHoover').style.color = '#a0a0a0';
  findObj(m.id + 'LeftHoover').style.fontWeight = '';
  findObj(m.id + 'Caption').style.fontWeight = '';
  findObj(m.id + 'RightHoover').style.fontWeight = '';
}

function mouseClick(m) {
  findObj(m.id + 'LeftHoover').style.color = '#ffffff';
  findObj(m.id + 'Caption').style.color = '#ffffff';
  findObj(m.id + 'RightHoover').style.color = '#ffffff';
  findObj(m.id + 'LeftHoover').style.fontWeight = 'bold';
  findObj(m.id + 'Caption').style.fontWeight = 'bold';
  findObj(m.id + 'RightHoover').style.fontWeight = 'bold';
  window.open(m.id + '.html','_self')
}

function showPicture(path) {
	pictureWindow = window.open(path, '_blank','height=400,location=no,menubar=no,resizable=yes,status=no,titlebar=no,toolbar=no,width=400');
	pictureWindow.focus();
}

function findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
  d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

