/********************************
www.passion-artifices.fr - v1.0
(c) 2009 Calico
********************************/

function backCart() {
	GetId("addcart_ext").style.display="none"; GetId("addcart_int").style.display="none";
}

function moveBackCart() {
	if (GetId("addcart_ext").style.display != 'block') return;
	if (window.innerHeight) {
		largeur = window.innerWidth/2;
		hauteur = window.innerHeight/2;
	} else {
		largeur = document.documentElement.offsetWidth/2;
		hauteur = document.documentElement.offsetHeight/2;
	}
	if (window.pageYOffset) {
		scrollH = window.pageYOffset;
		scrollG = window.pageXOffset;
	} else {
		scrollH = document.documentElement.scrollTop;
		scrollG = document.documentElement.scrollLeft;
	}
	GetId("addcart_ext").style.top = scrollH+"px"; GetId("addcart_ext").style.left = scrollG+"px";
	GetId("addcart_int").style.top = hauteur+"px"; GetId("addcart_int").style.left = largeur+"px";
}
