// -------------------------------------------------------------------------------- //
// www.Schmidlin-tsk.com/_script/img.js - stand 05.04.2011                          //
// -------------------------------------------------------------------------------- //
// verwendung:                                                                      //
// index.html [home]                                                                //
// [lang]/index.html [lang home]                                                    //
// firma/index.html                                                                 //
// firma/swissQuality.html                                                          //
// fassaden/index.html                                                              //
// fassaden/referenzen.html                                                         //
// fassaden/referenzen//.html                                                       //
// dienstleistungen/index.html                                                      //
// dienstleistungen/rtc/index.html                                                  //
// dienstleistungen/rtc/infrastruktur_Leistungen.html                               //
// dienstleistungen/formtec/index.html                                              //
// dienstleistungen/colorsec/index.html                                             //
// dienstleistungen/colorsec/lieferschein.html                                      //
// dienstleistungen/profil/index.html                                               //
// dienstleistungen/montage/index.html                                              //
// dienstleistungen/firstec/index.html                                              //
// firma/download.html                                                              //
// firma/download.html                                                              //
// firma/kontakt.html                                                               //
// firma/terms.html                                                                 //
// -------------------------------------------------------------------------------- //

imgDummy = new Image();
imgDummy.src = "../_img/referenzen/_dummy.jpg";

function openImg(idImg){ 
 img = new Image();
 img.src = "../_img/referenzen/" + idImg + ".jpg";
 top.document.getElementById("imgDummy").src = img.src;
 if(top.document.getElementById("layout").offsetWidth>1000){
  top.document.getElementById("imgDummy").style.left = top.document.getElementById("layout").offsetWidth/2-141;
 }else{
  top.document.getElementById("imgDummy").style.left = 374;
 }
 top.document.getElementById("imgDummy").style.top = 310;
 top.document.getElementById("imgDummy").style.visibility = "visible";
}

function closeImg(){
 top.document.getElementById("imgDummy").src = imgDummy.src;
 top.document.getElementById("imgDummy").style.visibility = "hidden";
}

// -------------------------------------------------------------------------------- //
// © Schmidlin-TSK AG, Alle Rechte vorbehalten                                      //
// oliver paar, 2011                                                                //
// -------------------------------------------------------------------------------- //
