var ImagePath = 'http://images.connect.bg/layout/products/upperlink';
var CartImagePath = 'http://images.connect.bg/products/layout/cart/';

var UL00i = new Image(); UL00i.src = ImagePath + '00i.gif';
var UL00a = new Image(); UL00a.src = ImagePath + '00a.gif';
var UL01i = new Image(); UL01i.src = ImagePath + '01i.gif';
var UL01a = new Image(); UL01a.src = ImagePath + '01a.gif';
var UL02i = new Image(); UL02i.src = ImagePath + '02i.gif';
var UL02a = new Image(); UL02a.src = ImagePath + '02a.gif';
var UL03i = new Image(); UL03i.src = ImagePath + '03i.gif';
var UL03a = new Image(); UL03a.src = ImagePath + '03a.gif';
var UL04i = new Image(); UL04i.src = ImagePath + '04i.gif';
var UL04a = new Image(); UL04a.src = ImagePath + '04a.gif';

function ULOver(obj,id) { obj.src = self['UL'+id+'a'].src }
function ULOut (obj,id) { obj.src = self['UL'+id+'i'].src }

function TogglePrice(VATFlag)
  {
   if (VATFlag==-1)
     {
      document.getElementById("ItemPriceWithVAT").style.display = "none";
      document.getElementById("ItemPriceWithoutVAT").style.display = "block";
      document.getElementById("WithVATButtons").style.display = "none";
      document.getElementById("WithoutVATButtons").style.display = "block";
     }
   else
     {
      document.getElementById("ItemPriceWithoutVAT").style.display = "none";
      document.getElementById("ItemPriceWithVAT").style.display = "block";
      document.getElementById("WithoutVATButtons").style.display = "none";
      document.getElementById("WithVATButtons").style.display = "block";
     }
  }