IE = (document.all); 
NC = (document.layers); 
Opera = (document.getElementById); 


function getHeight() { // Получаем высоту рабочей области браузера
//if (IE || Opera) send = document.body.clientHeight;
//if (NC) send = window.innerHeight;
//if (IE || Opera) send = screen.availHeight;
//if (NC) send = window.innerHeight;

if (self.innerHeight) {
	y = self.innerHeight;
// IE 6 Strict Mode
} else if (document.documentElement && document.documentElement.clientHeight) {
	y = document.documentElement.clientHeight;
// Остальные версии IE
} else if (document.body) {
	y = document.body.clientHeight;
}
send = y;
return send;
}

function getWidth() { // Получаем ширину рабочей области браузера
if (IE || Opera) send = document.body.clientWidth;
if (NC) send = window.innerWidth;
return send;
}

function moverBasketInfo() {

	var menu=document.getElementById("dbasketinfo02");
	//var x=getWidth();
	var y=getHeight();

	//menu.style.left = x + document.body.scrollLeft - 200;
	//menu.style.top=y + document.body.scrollTop;
	menu.style.top=y + document.documentElement.scrollTop - 100;

	window.setTimeout("moverBasketInfo()", 300);
}

function viewBasketInfo() {

	var menu=document.getElementById("dbasketinfo02");
	menu.style.display='block';
}
function hiddenBasketInfo() {

	var menu=document.getElementById("dbasketinfo02");
	menu.style.display='none';
}