var rootURI="http://yarmarka4u.com/";

function BannerPlace(page,placeSize,placeIndex,lastBanner,lang)
{
  this.page=page;
  this.placeSize=placeSize;
  this.placeIndex=placeIndex;
  this.lastBanner=lastBanner;
  this.lang=lang;
  this.LoadBanner = function (){
    sentData= "pageName="+ this.page+"&placeSize="+ this.placeSize+"&placeIndex="+ this.placeIndex+"&lastBanner="+ this.lastBanner +"&lang="+this.lang;
    $.post(rootURI+"bannerInterract/showBanner.php", sentData, this.ShowBanner);
  }
  this.ShowBanner=function(data)
  {
    response=jQuery.parseJSON(data);
    $("#place"+response['placeSize']+"_"+response['placeIndex']).html("<noindex><a onclick=\"Click("+response['bannerID']+")\" rel=\"nofollow\" href=\""+response['endLink']+"\" target=\"_blank\">"+response['innerText']+"</a></noindex>");
    this.lastBanner=response['bannerID'];
  }
}

function Click(id)
{
  sentData="id="+id;
  $.post(rootURI+"bannerInterract/click.php",sentData);
}

var MoreInfoShowed=false;
function moreInfo()
{
  if(MoreInfoShowed)
    document.getElementById('moreInfo').style.display="none";
  else
    document.getElementById('moreInfo').style.display="block";
  MoreInfoShowed=!MoreInfoShowed;
}

