  // *************** GOLI.AT ******************
  //
  //   Script © by DI Philipp Michael Metzler
  //          URL: http://www.goli.at
  //  Online Shop: http://www.clickshopping.at
  //
  // *************** GOLI.AT ******************

  myFilepath = 'fileadmin/images/';
  
  function ChangeOver(object)
  {
    tmp = document.getElementById(object);
    tmp.src = myFilepath + object + '_on.gif';
//    document[object].src = 'images/'+object+'_on.gif';
  }
  
  function ChangeOut(object)
  {
    tmp = document.getElementById(object);
    tmp.src = myFilepath + object + '_off.gif';
//    document[object].src = 'images/'+object+'_off.gif';
  } 

  function ChangeObject(object, picture)
  {
    tmp = document.getElementById(object);
    tmp.src = myFilepath + picture;
//    document[object].src = 'images/'+picture;
  }  
  
  function openWindow(theURL, winName, features) 
  { //v2.0
    window.open(theURL, winName, features);
  }

