function flipImage(divObj, mouse)
{
  var state = document.getElementById(divObj).style.display;
  
  if(mouse) {
    if(state == "none" && state != null) {
      window.event.srcElement.src = "http://romych.typepad.com/photos/uncategorized/2007/08/23/show.gif";
    } else {
      window.event.srcElement.src = "http://romych.typepad.com/photos/uncategorized/2007/08/23/hide.gif";
    }
  }
  else {
    if(state == "none" && state != null) {
      window.event.srcElement.src = "http://romych.typepad.com/photos/uncategorized/2007/08/23/show.gif";
    } else {
      window.event.srcElement.src = "http://romych.typepad.com/photos/uncategorized/2007/08/23/hide.gif";
    }
  }
}

function ShowHide(divObj)
{
  DOM = (document.getElementById); // IE 5+ et NS 6+
  IE4 = (document.all); // IE 4
  NS4 = (document.layers); // NS 4
  var state = "";
	
  if (DOM) {
    state = document.getElementById(divObj).style.display;
    if(state == "none" && state != null) {
      document.getElementById(divObj).style.display = "";
    } else {
      document.getElementById(divObj).style.display = "none";
    }
  }
  else if (IE4) {
    state = document.all.divObj.style.display;
    if(state == "none" && state != null) {
      document.all.divObj.style.display = "";
    } else {
      document.all.divObj.style.display = "none";
    }
  }
  else if (NS4) {
    state = document.layers[divObj].style.display;
    if(state == "none" && state != null) {
      document.layers[divObj].style.display = "";
    } else {
      document.layers[divObj].style.display = "none";
    }
  }
}

function start()
{
  if (screen.width > 800) {
    document.body.scroll = "no";
  }
  setHeight();
}

function setHeight()
{
  var browser = navigator.appName;
	
  if (browser == "Netscape") {
    document.getElementById(divMain).style.height = window.innerHeight;
  } else {
    divMain.style.height = document.body.clientHeight;
  }
}<!-- ph=1 -->
<!-- nhm:from_kauri -->
