///////////////////////////////////////////////////////////////////////////////
// Gites Provence - File     : global.js
//                - Desc     : JavaScript Preload image
// 2006-02-03 Jerome Blanc
///////////////////////////////////////////////////////////////////////////////

function loadImg(imgUrl) {
  var img = new Image();
  img.src = imgUrl;
}

function go()
{
  box = document.forms[0].lang;
  destination = box.options[box.selectedIndex].value;
  if (destination) location.href = destination;
}
