	function MMOut (id)
		{
		hideToolTipp();
	    document.getElementById(id).style.backgroundColor= '#ffffff';
		}
	//toltipp	
var mpos = null;
document.onmousemove = updateMauspos;

function updateMauspos(e) {
	if (document.layers)
	var x='nothing';
	else
	{
		x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
		y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
		if (mpos != null) {
			mpos.style.left = (x + 90) + "px";
			mpos.style.top 	= (y + 2) + "px";
		}
		else
		var x='nothing';
	}
}

function showToolTipp(id1,id2) {
	if (document.layers)
	var x='nothing';
	else
	{
			if(document.getElementById(id1))
			{
			mpos = document.getElementById(id1);
			mpos.style.display = "block"
			document.getElementById(id2).style.backgroundColor= '#f4f4f4';
			}
			else
			document.getElementById(id2).style.backgroundColor= '#f4f4f4';
		}
}

function hideToolTipp() {

	if (mpos==null || document.layers)
	var x='nothing';
	else 
	mpos.style.display = "none";
}


	