/*
Сайт "Звуковой Барьер"  
======================
Автор - Леонид Белоусов, TheWind3@GMail.com
27, ноябрь, 2008

"Sound Barrier" web site.
By Leonid Belousov, TheWind3@GMail.com
27 nov 2008
*/

function Show(Object) {
  Object.style.display = "inline";
}

function ShowHide(Object) {
  if(Object.style.display == "none")
    Object.style.display = "inline";
  else
    Object.style.display = "none";
}

function Navigate(Url) {
  window.document.location.href = Url;
}

