//***************************************************//
// PHPShop JavaScript 2.1                            //
// Copyright © www.phpshop.ru. Все права защищены.   //
//***************************************************//

var combowidth='';
var comboheight='';

// Месага о добавлении товара в корзину
function initialize(){
if (document.all){
combowidth=cartwindow.offsetWidth;
comboheight=cartwindow.offsetHeight;
setInterval("staticit_ie()",50);
if(cartwindow.filters){
  cartwindow.filters.revealTrans.Apply();
  cartwindow.filters.revealTrans.Play();
  }
cartwindow.style.visibility="visible";
}
else if (document.layers){
combowidth=document.cartwindow.document.width;
comboheight=document.cartwindow.document.height;
setInterval("staticit_ns()",50);
document.cartwindow.visibility="show";
}
}

function initialize_off(){
if (document.all){
combowidth=cartwindow.offsetWidth;
comboheight=cartwindow.offsetHeight;
setInterval("staticit_ie()",50);
cartwindow.style.visibility="hidden";
}
else if (document.layers){
combowidth=document.cartwindow.document.width;
comboheight=document.cartwindow.document.height;
setInterval("staticit_ns()",50);
document.cartwindow.visibility="hide";
}
}

function staticit_ie(){
cartwindow.style.pixelLeft=document.body.scrollLeft+document.body.clientWidth-combowidth-30;
cartwindow.style.pixelTop=document.body.scrollTop+document.body.clientHeight-comboheight;
}

function staticit_ns(){
document.cartwindow.left=pageXOffset+window.innerWidth-combowidth-30;
document.cartwindow.top=pageYOffset+window.innerHeight-comboheight;
}
