ie = navigator.userAgent.indexOf('MSIE') != -1;


function tooltip(e,action,idgd) {
	elem = document.getElementById('price'+idgd);
	if (!elem) return;
	if (action==1) {
		if (typeof price_active_idgd != 'undefined')	elem.style.display = 'none';
		elem.style.display = 'block';
		price_active_idgd = idgd;
		if (e.clientY + elem.offsetHeight > document.body.clientHeight)	elem.style.top = -elem.offsetHeight;
	} else {
		price_active_idgd = 0;
		elem.style.display = 'none';
	}
}