////////////////////////////////////////////
//  Filename: judah.js
////////////////////////////////////////////
function changeLang(which)
{
  var curr = parent.frames[1].location.href;
  var n = curr.length;
  if (which == 'en')
  {
    parent.frames[0].location.href = "fr_top_en.html";
    if ( curr.substr(n-3,3) == "php" )
    {
      parent.frames[1].location.href = "contact_en.php";
    }
    else
    {
      parent.frames[1].location.href = curr.substr(0,n-7) + "en.html";
    }
    parent.document.title = "JUDAH JUDAH by Sandra Goldberg";
  }
  else
  {
    parent.frames[0].location.href = "fr_top_de.html";
    if ( curr.substr(n-3,3) == "php" )
    {
      parent.frames[1].location.href = "contact_de.php";
    }
    else
    {
      parent.frames[1].location.href = curr.substr(0,n-7) + "de.html";
    }
    parent.document.title = "JUDAH, JUDAH von Sandra Goldberg";
  }
}


