// Replaces getElementById
function get_obj(id)
{
	return document.getElementById(id);
}

function view_tooltip(id, margLeft, titlu, text, poza)
{
	document.getElementById('tool').style.marginLeft = margLeft.concat('px');
	document.getElementById('tool').style.marginTop = document.getElementById(id).style.marginTop;
	document.getElementById('tool').style.display = 'inline';
	document.getElementById('poza_src').src = poza;
	document.getElementById('nume_pct').innerHTML = titlu;
	document.getElementById('descr_pct').innerHTML = text;
}

function hide_tooltip()
{
	document.getElementById('tool').style.display = 'none';
}