function el(Id) { if(document.getElementById(Id)) return document.getElementById(Id); else return true;  }
function elStyle(Id) { if(document.getElementById(Id)) return document.getElementById(Id).style; else return true; }
function elHide(Id) { elStyle(Id).display='none'; }
function elShow(Id) { elStyle(Id).display='block'; }


function browser()
{
  var Browser = "";
  var Navigator = navigator.userAgent.toLowerCase();
  if( Navigator.indexOf('msie 6') != -1 )  Browser = "ie6";
  else if( Navigator.indexOf('msie 7') != -1 )  Browser = "ie7";
  else if( Navigator.indexOf('msie 8') != -1 )  Browser = "ie8";
  else if( Navigator.indexOf('msie 8') != -1 )  Browser = "ie8";
  else if( Navigator.indexOf('safari') != -1 )  Browser = "safari";
  return Browser;
}
var Browser = browser();

function f_start()
{
  elStyle("margL").height = el("lewo").offsetTop-el("lewo_gora").offsetTop + "px";
  elStyle('slide_gal0').display = 'none';
  elStyle('slide_gal').display = 'block';
  elStyle('gal0').display = 'none';
  elStyle('gal').display = 'block';
  elStyle('slide_gal0_dol').display = 'none';
  elStyle('slide_gal_dol').display = 'block';

  elStyle('mini_gal0').display = 'none';
  elStyle('mini_gal').display = 'block';


  //if(document.getElementById('fixme'))
  //{
  //  var Obiekt = document.getElementById('fixme');
  //  if(Browser == "safari")
  //    Obiekt.style.top = Obiekt.offsetTop - 272 + "px";
  //  else
  //    Obiekt.style.left = document.getElementById('fixme0').offsetLeft + 6 + "px";
  //
  //  Obiekt.style.display = "block";
  //}
}

function wstawFlash(){
  document.writeln('<object type="application/x-shockwave-flash" style="width:900px; height:253px;" data="nadwozia.swf" wmode="transparent">'+
    '<param name="movie" value="nadwozia.swf" />'+
    '<param name="wmode" value="transparent" />'+
  '</object>');
}
function wstawFlash1(){
  document.writeln('<object type="application/x-shockwave-flash" style="width:900px; height:194px;" data="nadwozia1.swf" wmode="transparent">'+
    '<param name="movie" value="nadwozia1.swf" />'+
    '<param name="wmode" value="transparent" />'+
  '</object>');
}


//////////////////////////////


function zmianaFoto(ImgSrc, Href, Title)
{
  el('foto_prawo_a').href = Href;
  el('foto_prawo_a2').href = Href;
  el('foto_prawo_a').title = unescape(Title.replace(/\+/g,' '));
  el('foto_prawo_img').src = ImgSrc;
}


function galPokaz(ImgSrc, Lewo){
  var DeltaLewo = 152;
  if( Browser == "ie6" ) DeltaLewo = 8;
  else if( Browser == "ie7" ) DeltaLewo = 26;
  var Obiekt = document.getElementById('gal_sred');

  Obiekt.src = ImgSrc;
  Obiekt.style.left = Lewo - DeltaLewo + "px";
  Obiekt.style.top = -10 + "px";
  Obiekt.style.display = "block";
}
function galMiniPokaz(ImgSrc, Gora, Lewo){
  var Obiekt = document.getElementById('gal_sred_mini');
  Obiekt.src = ImgSrc;
  Obiekt.style.left = Lewo-140 + "px";
  Obiekt.style.top = Gora-26 + "px";
  Obiekt.style.display = "block";
}
function galUkryj(Id){
  elHide(Id);
  el(Id).src = "blank.gif";
}

/*******************/

window.addEvent('domready', function(){
  if( $('iamspam') )
    $('iamspam').value = 'imnotspam';
  f_start();
});


