var timercall = null;
var timersign = null;

function popup_hidden(id)
{

document.getElementById(id).style.visibility="hidden";

 }

function popup_visible(id)
{

document.getElementById(id).style.visibility="visible";

}


if (document.getElementById('cart')===null) {
//pamparam
}
else {
var link_sign = document.getElementById('cart');

link_sign.onmouseout = function () {timersign = setTimeout("popup_hidden('popupcart');" , 200);  }
link_sign.onmouseover = function() { getCartByAjax('popupcart'); clearTimeout(timersign);}

}

var divsign = document.getElementById('popupcart');
divsign.onmouseout = function () {timersign = setTimeout("popup_hidden('popupcart');" , 2000);   }
divsign.onmouseover =  function() { clearTimeout(timersign);  }
divsign.onmousemove =  function() { clearTimeout(timersign);  }

